Pay Tags

Authentication: All endpoints require an Authorization: Bearer <access token> header.

Most endpoints require an X-Company-ID: <company_id> header to scope requests to a specific company. This is the recommended header for most API operations.

Some endpoints require an X-Location-ID: <location_id> header when the query doesn't accept a locationId parameter.

See Authentication for details on how to obtain and use these headers.

Query Pay Tags

GraphQL Query

query PayTags {
  payTags {
    id
    name
    description
    externalId
    modifiedAt
    modifiedBy {
      fullName
    }
    deletedAt
  }
}

Example Variables

{}

Example Response

{
  "data": {
    "payTags": [
      {
        "id": "41",
        "name": "Ordinary Hours",
        "description": null,
        "externalId": null,
        "modifiedAt": "2024-06-06T03:29:32.500Z",
        "modifiedBy": {
          "fullName": "Roubler Support"
        },
        "deletedAt": null
      },
      {
        "id": "42",
        "name": "Overtime x1.5",
        "description": null,
        "externalId": null,
        "modifiedAt": "2024-06-06T03:29:45.299Z",
        "modifiedBy": {
          "fullName": "Roubler Support"
        },
        "deletedAt": null
      },
      {
        "id": "43",
        "name": "Overtime x2.0",
        "description": null,
        "externalId": null,
        "modifiedAt": "2024-06-06T03:29:50.979Z",
        "modifiedBy": {
          "fullName": "Roubler Support"
        },
        "deletedAt": null
      }
    ]
  }
}