Documentation

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.

Fork me on GitHub
  • create
    Create a new meta profile.
    ziggeo.metaProfiles().create(JSONObject arguments)
    
    1. key Meta Profile profile key.
    2. title Meta Profile profile title.
    This method returns JSON
  • index
    Get list of meta profiles.
    ziggeo.metaProfiles().index(JSONObject arguments)
    
    1. limit Limit the number of returned meta profiles. Can be set up to 100.
    2. skip Skip the first [n] entries.
    3. reverse Reverse the order in which meta profiles are returned.
    This method returns JSON
  • get
    Get a single meta profile
    ziggeo.metaProfiles().get(String token_or_key)
    
    This method returns JSON
  • delete
    Delete the meta profile
    ziggeo.metaProfiles().delete(String token_or_key)
    
  • index
    Return all processes associated with a meta profile
    ziggeo.metaProfileProcess().index(String meta_token_or_key)
    
    This method returns JSON
  • get
    Get a single process
    ziggeo.metaProfileProcess().get(String meta_token_or_key, String token_or_key)
    
    This method returns JSON
  • delete
    Delete the process
    ziggeo.metaProfileProcess().delete(String meta_token_or_key, String token_or_key)
    
  • create_video_analysis_process
    Create a new video analysis meta process
    ziggeo.metaProfileProcess().create_video_analysis_process(String meta_token_or_key)
    
    This method returns JSON
  • create_audio_transcription_process
    Create a new audio transcription meta process
    ziggeo.metaProfileProcess().create_audio_transcription_process(String meta_token_or_key)
    
    This method returns JSON
  • create_nsfw_process
    Create a new nsfw filter meta process
    ziggeo.metaProfileProcess().create_nsfw_process(String meta_token_or_key, JSONObject arguments)
    
    1. nsfw_action One of the following three: approve, reject, nothing.
    This method returns JSON
  • create_profanity_process
    Create a new profanity filter meta process
    ziggeo.metaProfileProcess().create_profanity_process(String meta_token_or_key, JSONObject arguments)
    
    1. profanity_action One of the following three: approve, reject, nothing.
    This method returns JSON