POST /actions/production-schedule-versions/{production_schedule_version_id}/set-task-links-from-production

Set task links for given production schedule version from tasks.

Path parameters

  • production_schedule_version_id string(uuid) Required

    Production schedule version unique identifier

Responses

  • 200 application/json

    Task links created

  • 400

    Wrong ID format

POST /actions/production-schedule-versions/{production_schedule_version_id}/set-task-links-from-production
curl -X POST "http://api.example.com/actions/production-schedule-versions/a24a6ea4-ce75-4665-a070-57453082c25/set-task-links-from-production" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
import requests

url = "http://api.example.com/actions/production-schedule-versions/a24a6ea4-ce75-4665-a070-57453082c25/set-task-links-from-production"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Accept": "application/json"
}
params = {}
payload = None

response = requests.post(
    url,
    headers=headers,
    params=params,
    json=payload
)

response.raise_for_status()

if response.content:
    print(response.json())
curl \
 --request POST 'http://api.example.com/actions/production-schedule-versions/a24a6ea4-ce75-4665-a070-57453082c25/set-task-links-from-production' \
 --header "Authorization: $API_KEY"
Response examples (200)
{}