Skip to main content
GET
/
organizations
/
{organization_id}
/
payrolls
/
pay-groups
List Pay Groups
curl --request GET \
  --url https://dev.intermezzo.ai/organizations/{organization_id}/payrolls/pay-groups \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "name": "<string>",
      "periodType": "WEEK",
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "limit": 123,
    "hasNext": false,
    "hasPrev": false,
    "nextCursor": "<string>",
    "prevCursor": "<string>",
    "total": 0
  }
}

Authorizations

Authorization
string
header
required

Get token from Auth0 and paste it here

Path Parameters

organization_id
required

Query Parameters

limit
integer
default:10
Required range: 1 <= x <= 100
cursor
string | null
prev_cursor
string | null
sort
string[]

Response

Successful Response

items
PayGroupListItem · object[]
required
pagination
PaginationMeta · object
required