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

Headers

x-project-id
string
required

Project ID to specify the project context

Body

application/json
tagIds
number[]
required

IDs of the tags to link

Example:
[1, 2, 3]
jobExecutionIds
number[]
required

IDs of the job executions to link the tags to

Example:
[1, 2, 3]

Response

204 - undefined