URL
API Support
License
https://uk.api.atto.co/
https://us.api.atto.co/
https://uk.api.atto.co/connect-invitations/v1/{invitationId}
https://us.api.atto.co/connect-invitations/v1/{invitationId}
curl -i -X GET \
'https://uk.api.atto.co/connect-invitations/v1/{invitationId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "data": { "invitationId": "550a4884-8473-4f2e-a6cf-551c16767d59", "recipientName": "string", "recipientEmail": "string", "customerReference": "string", "invitationCreated": "2019-08-24T14:15:22Z", "activities": [ … ] }, "meta": { "totalRecords": 0 } }
Request details including recipient name, email, etc
Template ID to be used for the email, if not specified the default template from configuration will be used
Name of the recipient (e.g. full name of the person)
Email address of the recipient to whom the email is going to be sent
https://uk.api.atto.co/connect-invitations/v1
https://us.api.atto.co/connect-invitations/v1
curl -i -X POST \
https://uk.api.atto.co/connect-invitations/v1 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '{
"templateId": "string",
"recipientName": "string",
"recipientEmail": "user@example.com",
"customerReference": "string"
}'
{ "data": { "invitationId": "550a4884-8473-4f2e-a6cf-551c16767d59" }, "meta": { "totalRecords": 0 } }