Skip to content

Inviting a user to an organization

Entity relationship diagram

Info

  • Exactly one ORGANIZATION contains zero or more INVITATION
  • Exactly one ORGANIZATION contains one or more MEMBERSHIP
  • Exactly one INVITATION references zero or one USER
  • Exactly one MEMBERSHIP references exactly one USER

Add invitation

POST https://api.zorgapis.nl/v1beta2/organizations/4a7c2c17-6514-46f8-aa05-6a22fb18b4ad/invitations HTTP/1.1
Content-Type: application/json

{
  "emailAddress": "john.doe@nictiz.nl" 
}
HTTP/1.1 201 Created
Content-Type: application/json

{
  "id": "88411780-1d25-4bc3-86a5-f2f901d9a900", 
  "emailAddress": "john.doe@nictiz.nl",
  "status": "PENDING" 
}

Note

To learn more, view the API reference or fork our Postman Collection and explore our API.