Sign in

Invite user

documented

Invite a new user to the organization.

POST /organizations/{organizationId}/usersUsersno 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://{{SCIM_BASE_URL}}/scim/v2/Users" \
  -X POST \
  -H "Authorization: Bearer {{CONTENTFUL_SECRET}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/scim+json, application/json" \
  -d '{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "userName": "{{$email}}", "name": {"givenName": "{{$firstName}}", "familyName": "{{$lastName}}"}, "emails": [{"value": "{{$email}}", "primary": true}] }'
Invite user · Contentful · OpenIntegrations