PUT
/
users
/
self
curl --request PUT \
  --url https://api.identity.fabric.zone/ums/v2/users/self \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "loginId": "sdsdf232ew-123asdaa-1231231",
  "email": "test.user@foobar.com",
  "firstName": "Test",
  "lastName": "Jr",
  "primaryContact": "+1 650 333 4444"
}'
{
  "id": "1231012312-312-31231asda",
  "status": "active",
  "orgId": "4ed1acc6-7799-4bee-856e-91f18ca77d7a",
  "loginId": "testuser@gmail.com",
  "isStaffUserFederated": true,
  "email": "foo@bar.com",
  "primaryContact": "+1 234 8992341234",
  "firstName": "James",
  "lastName": "Bond",
  "meta": {
    "fabricBirthDate": "28-20-2000"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Update User Self Details

Response

200
application/json

User Identity Object

The response is of type object.