cURL
curl --request POST \ --url https://app.getcensus.com/api/v1/invitations \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "email": "newuser@example.com", "role": "admin", "workspaces": [ { "id": 1234, "role": "Viewer" }, { "id": 4567, "role": "Editor" } ] }'
{ "status": "success", "data": { "id": 90967, "email": "newuser@example.com", "created_at": "2023-09-22T20:25:45.185Z", "created_by_id": 13, "claimed_at": "2023-09-22T20:25:45.185Z", "claimed_by_id": 11, "role": "admin", "associated_workspace_invitations": [ { "id": 90967, "workspace_id": 1234, "role": "Viewer" } ] } }
Create a new invitation for a user to join the current organization.
Bearer authorization using your Personal Access Token. Generate a new PAT on your user settings page.
Successfully created the invitation
The response is of type object.
object
Was this page helpful?