JobTag

Returns a list of job tag groups and their corresponding tags

Securitybearer
Request
Request Body schema:
required
businessUnitId
required
string <uuid>

Business unit id

tagGroupIds
Array of strings or null <uuid>

List of Tag Group Ids.

modifiedSince
string or null <date-time>

The date since the last update.

includeDeleted
boolean

Flag to include deleted tag groups

cursor
string or null

Optional.
When there are additional results, the metadata nextCursor field should be passed to retrieve the next page of results.

limit
integer or null <int32>

The maximum number of results that should be returned.

Responses
post/api/v1/jobTags/search
Request samples
{
  • "businessUnitId": "d854ead7-88c7-4afd-b1cd-ce1de7ceaee2",
  • "tagGroupIds": [
    ],
  • "modifiedSince": "2025-03-10T13:12:11Z",
  • "includeDeleted": true,
  • "cursor": "gCpeihFB1whbiZt1qIf1TbhL8TPbeRP2",
  • "limit": 500
}
Response samples
{
  • "results": [
    ],
  • "metadata": {
    }
}

Update job tags

Securitybearer
Request
Request Body schema:
required
Array
id
string or null <uuid>

The id.

businessUnitId
required
string <uuid>

The business unit id.

code
string or null

The code.

description
string or null

The description.

groupId
string or null <uuid>

Group id

Responses
patch/api/v1/jobTags/batch
Request samples
[
  • {
    },
  • {
    }
]

Update job tag groups

Securitybearer
Request
Request Body schema:
required
Array
id
string or null <uuid>

The id.

businessUnitId
required
string <uuid>

The business unit id.

code
string or null

The code.

description
string or null

The description.

groupId
string or null <uuid>

Group id

Responses
patch/api/v1/jobTagGroups/batch
Request samples
[
  • {
    },
  • {
    }
]