Link IMS users to the system
PUT/auth/api/sync/link-ims-users
Link IMS users to the system
Request
- application/json
Body
required
imsUserIds string[]required
The username of the user in the IMS
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
operation stringrequired
A string representation of the operation performed
result stringrequired
Possible values: [success
, failed
]
Default value: success
The result of the operation. Defaults to "success"
time date-timerequired
Default value: 2025-05-12T21:51:35.776Z
The time the operation was performed. Defaults to the current date+time
{
"operation": "self-register",
"result": "success",
"time": "2025-05-12T21:53:37.269Z"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://ccims.github.io/auth/api/sync/link-ims-users' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"imsUserIds": [
"string"
]
}'
ResponseClear