Sign in

Create user

documented

Create a new user in the organization.

POST /api/v1/scim/UsersSCIM APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://miro.com/api/v1/scim/Users" \
  -X POST \
  -H "Accept: application/scim+json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "userName": "{{$email}}", "name": {"givenName": "{{$given_name}}", "familyName": "{{$family_name}}"}, "emails": [{"value": "{{$email}}", "primary": true}]}'