Add a new operator
x-ms-visibility: "important"
Send a request to add an operator specified in the request body
application/json
Request Body required
Operator object that needs to be added
displayName string
emailAddress string
isOperatorAdmin boolean
Responses
- 200
- 400
- 401
Return the id for the new operator
application/json
Schema
Example (from schema)
response
Schema
id string
{
"id": "string"
}
{"id":"123"}
Errors in the body request
text/plain
Schema
Schema
string
Customer not found or not authorised
POST /operator/add
Authorization
name: codetype: apiKeyin: query
Request
Request
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
}'
python / requests
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
}'
go / native
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
}'
nodejs / axios
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
}'
ruby / Net::HTTP
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
}'
csharp / RestSharp
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
}'
php / 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
}'
java / OkHttp
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
}'
powershell / RestMethod
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
}'