{{sidenavigation.sidenavigationExpandLabel}}
{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}} {{helpModel.downloadHelpPdfDataStatus}}

Service Provider Configuration

An HTTP GET to this endpoint will return a JSON structure that describes the SCIM specification features available in i-net HelpDesk.

GET /api/scim/v2/ServiceProviderConfiguration

The attributes returned in the JSON object are defined in Section 5 of [RFC7643]. An example representation of SCIM service provider configuration may be found in Section 8.5 of [RFC7643].

Example Request

# Request
GET /api/scim/v2/ServiceProviderConfiguration HTTP/1.1
Authorization: Bearer VGhpcyBpcyBqdXN0IGEgZGVtbyBhY2Nlc3MgdG9rZW4u
 
# Response
HTTP/1.1 200 OK
Content-Type: application/scim+json
 
{
  "patch": {
    "supported": false
  },
  "filter": {
    "maxResults": 200,
    "supported": true
  },
  "authenticationSchemes": [],
  "etag": {
    "supported": false
  },
  "sort": {
    "supported": false
  },
  "bulk": {
    "maxPayloadSize": 1048576,
    "maxOperations": 1000,
    "supported": false
  },
  "changePassword": {
    "supported": false
  },
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
  ]
}

Application Example

# Browser access
https://127.0.0.1:9000/api/scim/v2/ServiceProviderConfiguration
 
# Shell access using curl
curl -LsH "Authorization: Bearer <access_token>" "https://127.0.0.1:9000/api/scim/v2/ServiceProviderConfiguration"
 
# Shell access using curl using username and password
curl -Lsu username:password "https://127.0.0.1:9000/api/scim/v2/ServiceProviderConfiguration"
i-net HelpDesk
This application uses cookies to allow login. By continuing to use this application, you agree to the use of cookies.


Help - /ServiceProviderConfiguration