Argument "content" is null in group scim provisioning

Good day,

While provisioning groups, we are receiving the error: argument content is null, which is not helpful. On the client side, we don’t see any issues with the requests/responses. In which cases might this error appear? Action type: GroupPushMapping

Our response has a nullable field of externalId, can this be the issue?

Thank you

How is your SCIM server responding when it receives the group push request from Okta? Maybe you can share a sample response payload.

Hey,

response:

{

    "schemas": [

"urn:ietf:params:scim:schemas:core:2.0:Group"

    ],

"id": "9659bb52-36b7-4b73-8139-cbd216473bca",

"externalId": null,

"meta": {

"resourceType": "Group",

"created": "2025-10-27T06:04:41Z",

"lastModified": "2025-10-27T06:04:41Z"

    },

"displayName": "okta test",

"members": []

}

Hm, you seem to be formatting your response correctly. Have you had a chance to test if removing externalId from your response changed the behavior at all?