Skip to main content

Get Summary of Non-Employee Approval Requests

GET 

/non-employee-approvals/summary/:requested-for

This request will retrieve a summary of non-employee approval requests. There are two contextual uses for the requested-for path parameter:

  1. The user has the role context of idn:nesr:read, in which case he or she may request a summary of all non-employee approval requests assigned to a particular approver by passing in that approver's id.
  2. The current user is an approver, in which case "me" should be provided as the requested-for value. This will provide the approver with a summary of the approval items assigned to him or her.

Request

Path Parameters

    requested-for stringrequired

    The identity (UUID) of the approver for whom for whom the summary is being retrieved. Use "me" instead to indicate the current user.

    Example: 2c91808280430dfb0180431a59440460

Responses

summary of non-employee approval requests

Schema
    approved int32

    The number of approved non-employee approval requests.

    pending int32

    The number of pending non-employee approval requests.

    rejected int32

    The number of rejected non-employee approval requests.

Loading...