Sorry, no results found for "".
Must be exactly "site_invitation"
.
"mark.smith@example.com"
Returns a resource object of type site_invitation.
POST https://site-api.datocms.com/site-invitations HTTP/1.1Authorization: Bearer YOUR-API-TOKENAccept: application/jsonX-Api-Version: 3Content-Type: application/vnd.api+json
{ "data": { "type": "site_invitation", "attributes": { "email": "mark.smith@example.com" }, "relationships": { "role": { "data": { "type": "role", "id": "34" } } } }}
curl -g 'https://site-api.datocms.com/site-invitations' \ -X POST \ -H "Authorization: Bearer YOUR-API-TOKEN" \ -H "Accept: application/json" \ -H "X-Api-Version: 3" \ -H "Content-Type: application/vnd.api+json" \ --data-binary '{"data":{"type":"site_invitation","attributes":{"email":"mark.smith@example.com"},"relationships":{"role":{"data":{"type":"role","id":"34"}}}}}'
await fetch("https://site-api.datocms.com/site-invitations", { method: "POST", headers: { Authorization: "Bearer YOUR-API-TOKEN", Accept: "application/json", "X-Api-Version": "3", "Content-Type": "application/vnd.api+json", }, body: JSON.stringify({ data: { type: "site_invitation", attributes: { email: "mark.smith@example.com" }, relationships: { role: { data: { type: "role", id: "34" } } }, }, }),});
HTTP/1.1 200 OKContent-Type: application/jsonCache-Control: cache-control: max-age=0, private, must-revalidateX-RateLimit-Limit: 30X-RateLimit-Remaining: 28
{ "data": { "type": "site_invitation", "id": "312", "attributes": { "email": "mark.smith@example.com", "expired": "mark.smith@example.com" }, "relationships": { "role": { "data": { "type": "role", "id": "34" } } } }}