SCIM PATCH Builder
Generate and validate SCIM 2.0 PATCH operations before sending them to an endpoint.
Operations2 operations
1
replace active false2
add emails [{"value":"new@example.com","type":"work"}]Valid SCIM PATCH documentOperations are ready for an RFC 7644 PATCH request.
SCIM PATCH payloadCopy into an HTTP request body
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"path": "active",
"value": false
},
{
"op": "add",
"path": "emails",
"value": [
{
"value": "new@example.com",
"type": "work"
}
]
}
]
}Private by design
Nothing is uploaded, logged, or saved. Avoid pasting live secrets into shared screens.