v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Applications

Create Application

Use this API to create a new application for scan and SDK publishing.

post/api/cmp/v1/application

Request body

namestring

Application Name

solutionType'API' | 'ONETRUST_SDK'

The type of solution implemented by this Application

platform'IOS' | 'ANDROID' | 'APPLETV' | 'ANDROIDTV' | 'FIRETV' | 'ROKU' | 'SAMSUNGTV' | 'LGTV' | 'VIZIOTV' | 'HBBTV' | 'PANASONICTV' | 'PS5' | 'YOUVIEW'

Platform of this Application

orgIdstring

Organization ID

Example request

{
  "name": "My Application",
  "solutionType": "ONETRUST_SDK",
  "orgId": "org-123"
}

Response

Created

applicationIdstring uuid

Application ID

namestring

Application Name

platform'ANDROID' | 'IOS'

Application Platform

fileType'apk' | 'ipa' | 'aab'

File Type

scanIdstring uuid

The unique identifier of the scan.

Example response

{
  "applicationId": "123e4567-e89b-12d3-a456-426614174000",
  "name": "My Application",
  "platform": "ANDROID",
  "fileType": "apk",
  "scanId": "123e4567-e89b-12d3-a456-426614174000"
}