Add a contributor
This endpoint allows you to add new contacts or existing contacts as contributors of a request.
Body
-
requestId string
The ID of the request you want to add the contributor to.
-
contacts array[string | object]
An array of the contributors you want to add to the request. You can add up to 10 contributors per API cal. Each contributors can be a string representing the ID of an existing contact or a contact object in JSON format. (click here for more details)
Responses
-
200 application/json
List of requests of a campaigns.
-
Bad Request -- Your request is invalid.
-
Unauthorized -- Your API key is wrong.
-
Forbidden -- The object requested is hidden for administrators only.
-
Not Found -- The specified object could not be found.
-
Too Many Requests -- You're requesting too many objects! Slow down!
-
Internal Server Error -- We had a problem with our server. Try again later.
-
Service Unavailable -- We're temporarily offline for maintenance. Please try again later.
curl \
-X POST https://api.usecollect.com/v1/contributors \
-H "Content-Type: application/json" \
-d '{"contact":{"data":{"brand":"Tesla","model":"Roadster"},"email":"elon@example.com","company":"Tesla","lastName":"Musk","firstName":"Elon"},"requestId":"xvr69EYLKXvTkfYuk"}'
{
"contact": {
"data": {
"brand": "Tesla",
"model": "Roadster"
},
"email": "elon@example.com",
"company": "Tesla",
"lastName": "Musk",
"firstName": "Elon"
},
"requestId": "xvr69EYLKXvTkfYuk"
}
{
"contact": "WmTjsFknzHdmfs3Ra",
"requestId": "xvr69EYLKXvTkfYuk"
}
{
"errors": [],
"request": {
"_id": "nw42MmBsJoccgutST",
"status": "pending",
"contact": {
"_id": "xtPWKQqcAk8MJfoz5",
"email": "maincontact@example.com",
"lastName": "Doe",
"createdAt": "2022-07-03T13:51:27Z",
"firstName": "John",
"nbRequest": 5,
"lastActivity": "2022-07-04T07:20:06Z"
},
"dueDate": "2022-07-11T21:59:00Z",
"privacy": "private",
"branding": {
"useBranding": false
},
"createdAt": "2022-07-04T07:20:06Z",
"portalUrl": "https://app.usecollect.com/portal/uGFRDeEL3Ct2uYo2c/nw42MmBsJoccgutST",
"campaignId": "xvr69EYLKXvTkfYuk",
"contributors": [
{
"_id": "WmTjsFknzHdmfs3Ra",
"email": "johndoe@example.com",
"lastName": "Musk",
"createdAt": "2022-07-03T13:51:27Z",
"firstName": "Elon"
}
]
}
}