Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Account Owner and Account Administrators

Request Headers

HeaderDescription
Authorization (required)Access token. You can obtain a token by making a request
Content-Type: application/json
(required)
Property for processing a request in JSON
Accept: application/json
(required)
Property for processing a request in JSON
ParameterDescription
sessionId (required)Session ID
userIds (required)IDs of the users who have session permissions

Response Codes

CodeTextDescription
200The request has been successfully processed
400Bad requestA request error
401UnauthorizedAn authorization error
404Unknown userNo user was found with the specified ID

Sample Request

Code Block
languagexml
POST /performance-management/appraisal/session/14f0ffe2-152e-11f0-91a5-02420aff005f/permissions/remove
Host: api-learn.ispringlearn.com 
Content-Type: application/json
Accept: application/json
X-Auth-Account-Url: https://api-learn.ispring.com
Authorization: Bearer rSpQ_P505lb1DO3Ql_Z_NuoCHxIntRgpUh8hCz86rYs

{
  "sessionID": "14f0ffe2-152e-11f0-91a5-02420aff005f",
  "userIDs": [
    "65037ca5-137f-11f0-ad73-02420aff0051"
  ]
}

...