Skip to main content

Get Summary of Non-Employee Requests

GET 

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

This request will retrieve a summary of non-employee 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 account manager by passing in that manager's id.
  2. The current user is an account manager, in which case "me" should be provided as the requested-for value. This will provide the user with a summary of the non-employee requests in the source(s) he or she manages.

Request

Path Parameters

    requested-for uuid (if user is Org Admin)required

    The identity (UUID) of the non-employee account manager for whom the summary is being retrieved. Use "me" instead to indicate the current user.

    Example: 2c91808280430dfb0180431a59440460

Responses

Non-Employee request summary object.

Schema
    approved int32

    The number of approved non-employee requests on all sources that requested-for user manages.

    rejected int32

    The number of rejected non-employee requests on all sources that requested-for user manages.

    pending int32

    The number of pending non-employee requests on all sources that requested-for user manages.

    nonEmployeeCount int32

    The number of non-employee records on all sources that requested-for user manages.

Loading...