Add apps to tag


                https://api.ocamba.com/v1/hood/tags/{id}/apps-add
            

Adding apps to tag with specified id


Name
Description
android[ string ]
Array of Android applications. Every item in array must be a valid Android app unique identifier (Package name). Android app names are case sensitive.

ios[ string ]
Array of IOS applications. Every item in array must be a valid IOS app unique identifier (Bundle ID). iOS app names are case sensitive.

web[ string ]
Array of Web applications. Every item in array must be a fully qualified domain name. Web app names are case insensitive and are sanitized to be lowercase.

204 - No Content
Arrow
note
1 Web app names are sanitized to be all lowercase. Android and iOS app names stay the same.
post Arrow
{
  "web": [
    "ocamba.com"
  ],
  "android": [
    "com.Ocamba.demo"
  ],
  "ios": [
    "com.ocamba.iosdemo"
  ]
}