Skip to main content
POST
/
api
/
tags-job-executions-new
/
link
/
many
Link tags to job executions
curl --request POST \
  --url https://api.mentionlab.io/api/tags-job-executions-new/link/many \
  --header 'Content-Type: application/json' \
  --header 'x-project-id: <x-project-id>' \
  --data '
{
  "tagIds": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  ],
  "jobExecutionIds": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  ]
}
'

Headers

x-project-id
string
required

Project ID to specify the project context

Body

application/json
tagIds
string[]
required

UUIDs of the tags to link

Example:
["a1b2c3d4-e5f6-7890-abcd-ef1234567890"]
jobExecutionIds
string[]
required

UUIDs of the job executions to link the tags to

Example:
["a1b2c3d4-e5f6-7890-abcd-ef1234567890"]

Response

204 - undefined