Skip to main content
POST
/
api
/
application-management
Create a new application management configuration
curl --request POST \
  --url https://your-instance.example.com/api/application-management \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "configurationName": "<string>",
  "defaultStatus": "<string>",
  "name": "<string>",
  "description": "<string>",
  "source": "Any",
  "allowRecontact": false,
  "status": "active"
}
'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
configurationName
string
required
defaultStatus
string
required
name
string
description
string
source
string
default:Any
allowRecontact
boolean
default:false
status
enum<string>
default:active
Available options:
active,
inactive

Response

Configuration created

success
boolean
message
string
data
object