SCIM Payload Builder and Validator
Build SCIM 2.0 User and Group payloads or validate an existing JSON resource.
User attributesOnly entered values are included in the payload
activeAllow the identity provider to use this account
SCIM JSON payloadReady for a create or replace request
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"userName": "jsmith@example.com",
"active": true,
"externalId": "1001",
"name": {
"givenName": "Jane",
"familyName": "Smith"
},
"emails": [
{
"value": "jsmith@example.com",
"type": "work",
"primary": true
}
]
}Valid SCIM payloadSCIM User schema shape is ready.
Private by design
Nothing is uploaded, logged, or saved. Avoid pasting live secrets into shared screens.