Skip to main content

Add a new operator

x-ms-visibility: "important"

Send a request to add an operator specified in the request body

Request Body required

Operator object that needs to be added

    displayName string
    emailAddress string
    isOperatorAdmin boolean
Responses

Return the id for the new operator


Schema
    id string
POST /operator/add

Authorization

name: codetype: apiKeyin: query

Request

Base URL
https://api.emabler.net/api
apiKey — auth required
code in query
customerKey — auth required
clientId in query
Body required
{
"displayName": "string",
"emailAddress": "string",
"isOperatorAdmin": true
}
curl / cURL
curl -L -X POST 'https://api.emabler.net/api/operator/add' \
-H 'Content-Type: text/plain' \
-H 'Accept: text/plain' \
--data-raw '{
"displayName": "string",
"emailAddress": "string",
"isOperatorAdmin": true
}'