Invalid Payload 400 Error on POST to SCIM Users Endpoint

Overview

When trying to POST to the SCIM endpoint, an invalid payload error is seen.

Error seen:

{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"details": "Invalid payload",
"status": "400"
}

Applies To

  • SCIM 2.0
  • SCIM Users Endpoint
  • Invalid Payload Error

Solution

Check that the schemas in use are the SCIM 2.0 core schema and enterprise schema extension:

{ “schemas”: [ “urn:ietf:params:scim:schemas:core:2.0:User”, “urn:ietf:params:scim:schemas:extension:enterprise:2.0:User” ],

Related References