POSTMAN SCIM Integration

Which IIQ version are you inquiring about?

IIQ 8.3

Please share any other relevant files that may be required (for example, logs).

2025-05-01T15:55:26,685  WARN http-nio-8080-exec-10 engine.jdbc.spi.SqlExceptionHelper:137 - SQL Error: 515, SQLState: 23000  
2025-05-01T15:55:26,685 ERROR http-nio-8080-exec-10 engine.jdbc.spi.SqlExceptionHelper:142 - Cannot insert the value NULL into column 'native_identity', table 'identityiq.identityiq.spt_link'; column does not allow nulls. INSERT fails.

Share all details about your problem, including any error messages you may have received.

Trying to do postman integration through Webservices. Account got created in Postman side. But not able to create link in IIQ. It fails with nativeidentity is null while inserting into Link table. native identity comes from postman once the account got created. Because the native identity is the id of the account which got created on postman side

can share a little more informations?

Hello @umacsaa

You are using SCIM connector or Web Services ?

Hi @umacsaa

Can you try using $plan.nativeIdentity$ in the request body/URL

For example:

{
“userName”: “$plan.nativeIdentity$”,
“name”: {
“familyName”: “$plan.lastName$”,
“givenName”: “$plan.firstName$”
}
}