Create New Contact
POST /addressbook/contacts
POST /addressbook/contacts Required Permission
create:ContactsExample Request
curl --location 'https://<hostname>/contacts' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"alias": "john",
"msisdn": "4479000000001",
"meta": {
"NAME": "John",
"CITY": "London"
}
}'
Request Parameters
Field
Type
Required
Description
Responses
Success (HTTP 200)
Validation Error (HTTP 400)
Last updated