Sign in

Create SCIM user

documented

Provision a new SCIM user.

POST /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://www.figma.com/scim/v2/{{$tenant_id}}/Users" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:User",
    "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User",
    "urn:ietf:params:scim:schemas:extension:figma:enterprise:2.0:User"
  ],
  "userName": "{{$userName}}", 
  "name": {"givenName": "{{$givenName}}", "familyName": "{{$familyName}}"}, 
  "roles": [ {"type": "seatType", "value": "{{$seatType}}" } ], 
  "emails": {"primary": {{$emailPrimary}}, "value": "{{$email}}", "type": "work" }, 
  "title": "{{$title}}", 
  "displayName": "{{$displayName}}", 
  "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {"costCenter": "{{$costCenter}}", "department": "{{$department}}", "organization": "{{$organization}}"}, 
  "externalId": "{{$externalId}}", 
  "urn:ietf:params:scim:schemas:extension:figma:enterprise:2.0:User": {"figmaAdmin": {{$figmaAdmin}}} }'" 


Create SCIM user · Figma · OpenIntegrations