Channel Contact Identity Type

Contact identity type.

Channel Contact Identity Types
- Channel Contact Identity Types Manage
GET channelapp/contactidentitytypes
GET channelapp/contactidentitytypes/{id}
Model
Channel Contact Identity Type JSON Format

Channel Contact Identity Type is represented as simple flat JSON objects with the following keys:

Name Type Description
id string Id of the identity type.
Name string Name of the identity type.
IconUrl string Icon URL of the identity type.
Endpoint
Get the list of Channel Contact Identity Types

GET channelapp/contactidentitytypes

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/channelapp/contactidentitytypes \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

[{"id":"Visitor","Name":"Visitor","IconUrl":"https://server.com/myicon"}]
Get a single Channel Contact Identity Type

GET channelapp/contactidentitytypes/{id}

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/channelapp/contactidentitytypes/Visitor \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

{"id":"Visitor","Name":"Visitor","IconUrl":"https://server.com/myicon"}