Working with meta profiles from Node SDK
Node SDK offers you a way to handle meta profiles from the backend of your system.
Create and manage your meta profiles and their processes through simple API calls. You can do it through your Ziggeo account dashboard, however you can also do it through your own API calls.
It is simple, fast and bellow you can see exactly how to do it.
NodeJS SDK Meta Profiles Methods
- create Create a new meta profile.
ZiggeoSdk.MetaProfiles.create(arguments, [callbacks])
- key Meta Profile profile key.
- title Meta Profile profile title.
This method returns JSON - index Get list of meta profiles.
ZiggeoSdk.MetaProfiles.index(arguments, [callbacks])
- limit Limit the number of returned meta profiles. Can be set up to 100.
- skip Skip the first [n] entries.
- reverse Reverse the order in which meta profiles are returned.
This method returns JSON - get Get a single meta profile
ZiggeoSdk.MetaProfiles.get(token_or_key, [callbacks])
This method returns JSON - delete Delete the meta profile
ZiggeoSdk.MetaProfiles.destroy(token_or_key, [callbacks])
NodeJS SDK Meta Profile Processes Methods
- index Return all processes associated with a meta profile
ZiggeoSdk.MetaProfileProcess.index(meta_token_or_key, [callbacks])
This method returns JSON - get Get a single process
ZiggeoSdk.MetaProfileProcess.get(meta_token_or_key, token_or_key, [callbacks])
This method returns JSON - delete Delete the process
ZiggeoSdk.MetaProfileProcess.destroy(meta_token_or_key, token_or_key, [callbacks])
- create_video_analysis_process Create a new video analysis meta process
ZiggeoSdk.MetaProfileProcess.create_video_analysis_process(meta_token_or_key, [callbacks])
This method returns JSON - create_audio_transcription_process Create a new audio transcription meta process
ZiggeoSdk.MetaProfileProcess.create_audio_transcription_process(meta_token_or_key, [callbacks])
This method returns JSON - create_nsfw_process Create a new nsfw filter meta process
ZiggeoSdk.MetaProfileProcess.create_nsfw_process(meta_token_or_key, arguments, [callbacks])
- nsfw_action One of the following three: approve, reject, nothing.
This method returns JSON - create_profanity_process Create a new profanity filter meta process
ZiggeoSdk.MetaProfileProcess.create_profanity_process(meta_token_or_key, arguments, [callbacks])
- profanity_action One of the following three: approve, reject, nothing.
This method returns JSON