Skip to main content
GET
/
schedule-management
/
v1
/
schedules
/
{uid}
/
versions
List Schedule Versions
curl --request GET \
  --url https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions \
  --header 'Authorization: <api-key>'
import requests

url = "https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions"

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "Authorization: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions")
  .header("Authorization", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.engrate.io/schedule-management/v1/schedules/{uid}/versions")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

response = http.request(request)
puts response.read_body
[
  {
    "acceptance_level": "cnf",
    "created_ts": "2026-03-25T14:00:00+00:00",
    "is_active": true,
    "last_modified_ts": "2026-03-25T14:05:00+00:00",
    "message_id": "MSG-20260325-001",
    "nrr_received": true,
    "org_uid": "9b2e4d8f-1c3a-4f5e-8d7b-6a9e0f2c1b3d",
    "schedule_uid": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "spec": {
      "market": "DE",
      "receiver_id": "10XDE-VE-TRANSMK",
      "sender_id": "11XDE-SENDER---A",
      "series": [],
      "tso": "50HERTZ_DE_TSO"
    },
    "status": "accepted",
    "transmission_report_id": "TR-20260325-001",
    "uid": "c8d7e6f5-4a3b-4c2d-9e1f-0a8b7c6d5e4f",
    "version": 1
  }
]
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "ctx": {},
      "input": "<unknown>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

uid
string<uuid>
required

Schedule unique identifier.

Response

Successful Response

acceptance_level
string
required

Highest acceptance level reached: empty string, ack, or cnf.

Examples:

"cnf"

"ack"

""

created_ts
string
required

ISO 8601 datetime when this version was created.

Example:

"2026-03-25T14:00:00+00:00"

last_modified_ts
string
required

ISO 8601 datetime of the most recent status change.

Example:

"2026-03-25T14:05:00+00:00"

org_uid
string
required

Organization that owns this version.

Example:

"9b2e4d8f-1c3a-4f5e-8d7b-6a9e0f2c1b3d"

schedule_uid
string
required

Parent Schedule identifier.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

spec
ScheduleVersionSpec · object
required

Full submission specification including market routing and series references.

status
string
required

Processing status: ingested, submitted, accepted, rejected, cnf_partial, or icnf.

Examples:

"accepted"

"submitted"

"rejected"

uid
string
required

Unique identifier for this version.

Example:

"c8d7e6f5-4a3b-4c2d-9e1f-0a8b7c6d5e4f"

version
integer
required

Sequential version number (1-based). Increments with each re-submission.

Examples:

1

2

3

is_active
boolean
default:true

Whether this version is the active one according to the authoritative TSO message ID. Older versions become inactive when a new version is accepted.

message_id
string | null

TSO document identification assigned to this version's message.

Example:

"MSG-20260325-001"

nrr_received
boolean | null

Whether a Non-Repudiation of Receipt (NRR) delivery confirmation has been received from the TSO.

transmission_report_id
string | null

Mako365/AS4 transmission report identifier for delivery tracking.

Example:

"TR-20260325-001"

warnings
WarningItem · object[] | null

TSO warnings from the ACK response, if any.