Get the IMS token for a given IMS user id
GET/auth/api/sync/get-ims-token/:id
Get the IMS token for a given IMS user id
Request
Path Parameters
id stringrequired
The neo4j id of the IMS user
Responses
- 200
- 400
- application/json
- Schema
- Example (from schema)
Schema
token stringnullablerequired
isImsUserKnown booleanrequired
message stringnullablerequired
{
"token": "string",
"isImsUserKnown": true,
"message": "string"
}
Missing query parameter imsUser or failed to load referenced IMS user
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://ccims.github.io/auth/api/sync/get-ims-token/:id' \
-H 'Accept: application/json'
ResponseClear