Create CRM Item #
Creates a new directory item in the supplied directory.
POST /v1.0/contactdirectories/{DIRECTORY_ID}/crmitems
Example #
This request will create a new directory item.
Request #
POST https://api.na.myreports.cloud/api/v1.0/contactdirectories/00000000-0000-0000-0000-000000000000/crmitems HTTP/1.1
Content-Type: application/json
accept-charges: true
Authorization: Bearer {TOKEN}
Connection: keep-alive
{
"fields": {
"title": "Mr",
"fullName": "CRM3a",
"companyName": "Company",
"jobTitle": "Job Title",
"phone1": "+44XXXXXXXXXX",
"email": "Email Address",
"field1": "field1",
"field2": "field2",
"crmId": "00000000-0000-0000-0000-000000000001"
}
}
Response #
HTTP/1.1 201 Created
Content-Type: application/json; charset=utf-8
Content-Length: xx
Location: https://api.na.myreports.cloud/api/v1.0/contactdirectories/00000000-0000-0000-0000-000000000000/crmitems
{
"data": {
"id": "00000000-0000-0000-0000-000000000123",
"fields": {
"title": "Mr",
"fullName": "CRM3a",
"companyName": "Company",
"jobTitle": "Job Title",
"phone1": "+44XXXXXXXXXX",
"email": "Email Address",
"field1": "field1",
"field2": "field2",
"crmId": "00000000-0000-0000-0000-000000000001"
}
},
"status": "success",
"timestamp": "2019-11-29T16:03:23.9251680Z"
}
Errors #
Unauthorized #
When the token is not provided, invalid or expired
HTTP/1.1 401 Unauthorized
Bad Request #
When the provided directory id is not in the correct format
HTTP/1.1 400 Bad Request
Date: Thu, 06 Feb 2020 12:45:27 GMT
Content-Type: application/json; charset=utf-8
Content-Length: 149
{
"error": 400,
"message": "The value '<directory id>' is not valid.",
"status": "error",
"timestamp": "2020-02-06T12:45:27.5903465Z"
}