cURL
curl --request PATCH \ --url https://app.getcensus.com/api/v1/invitations/{invitation_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "role": "admin" } '
{ "status": "updated", "data": { "id": 90967, "email": "[email protected]", "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" } ] } }
Update an unclaimed invitation’s role within the organization.
Bearer authorization using your Personal Access Token. Generate a new PAT on your user settings page.
ID of the invitation
admin
member
Successfully updated invitation's role.
The outcome of the update request
updated
"updated"
Show child attributes
Was this page helpful?