Request headers
Authentication and authorization credentials must be set for each request using HTTP headers. However, you have to include one header parameter in almost all of your SCIM API requests:
Request header example
curl --request GET \
--url https://api.oneflow.com/scim/v1/users \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 9841f1ee533681c3ea6a438560f2bb6c73b76675'
This request will return a list of users in JSON format.
Note:
Authentication will be needed only for the Users and Groups endpoint.
The following endpoints need no SCIM API token to receive a successful response:
Updated over 2 years ago