cancel
Showing results for 
Search instead for 
Did you mean: 

"Name ID" attribute is required, Cloud Identity Authentication Service

Aisurya
Participant
0 Kudos

Hi Experts,

I am getting below error while using the REST API to create User , even though i followed the help document . Below are screenshots from POSTMAN Rest Client.

Name ID attribute is required.

Still am getting the error.

Please help.

Thanks in Advance,

Aisurya

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Aisurya, this issue is related to Postman, I try with Insomnia app, and works fine:

Hope this helps.

Best regards.

Aisurya
Participant
0 Kudos

Hello Deyvid,

Even i tried the way suggested , still am getting the same error. My requirement is to get the email Activation link in the Response after any user created via the API.

Thanks and Regards,

Aisurya

Former Member
0 Kudos

Hello Aisurya you need to set the attribute send_email = false

The email activation link will be returned in the 201 response.

More info:

https://help.sap.com/doc/6d6d63354d1242d185ab4830fc04feb1/Cloud/en-US/0aa433c741a24df9ac2b3a5faca202...

Former Member
0 Kudos

Hello Aisurya, did you solve this issue?

Any additional information?

former_member188370
Participant
0 Kudos

Hi Aisurya,

the URL suffix is /service/scim/Users (as described here: https://help.sap.com/viewer/6d6d63354d1242d185ab4830fc04feb1/Cloud/en-US/cea87780bee94c6994b8005c6d6...

Content type needs to be application/scim+json

Try with the following content in the request body (type raw):

{

"schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User"

],

"userName": "johns",

"name": {

"givenName": "John",

"familyName": "Smith" },

"emails": [{

"value": "john.smith@example.com"

}]

}

Aisurya
Participant
0 Kudos

Hi Jens,

Yes , i have tried the way suggested. But my requirement is to get the email Activation link in the Response after the user created .

I don't email activation link if i use "/service/scim/Users" .

Thanks and Regards,

Aisurya