Create Subscriber
This request creates a subscriber.
post | /subscribers |
Sample Request
This is a sample POST request to create a subscriber:
curl -X POST \
'https://api.carrierx.com/conference/v1/subscribers' \
-H 'Content-Type: application/json' \
--data-binary '{"login":"test_carrierx_conference_135","password":"my_test_password","firstName":"CarrierX"}' \
-u '[your_user_name]:[your_password]'
Sample Response
200
status code with a serialized copy of the Subscriber object:
{
"authenticationToken": "MWMx0BU1YZE0MV==",
"created": 1586872518000,
"didGroupReferences": [],
"externalId": -1,
"firstName": "CarrierX",
"lastName": "",
"login": "test_carrierx_conference_135",
"parentSid": "zzpF93QCVvfYYJb2KdPSzGW6lqGLB3qm",
"role": 3,
"sid": "rB0M9.EzXfaO4keb-opANwfb7CHx1Ph1"
}
Body Arguments
JSON representation of the fields and values of the Subscriber object to be created.
Required fields to create a subscriber are:
login
password
Refer to this table to view all fields that appear in the Subscriber object.