Zum Inhalt springen

Orders

Admin

Orders groups 5 operations on the admin tier.

Admin tier. Requires an RBAC-gated vnstat_ access token, sent as Authorization: Bearer … or X-Vinosoft-Access-Token.

GET

/api/{version}/admin/orders

Nicht implementiert

Diese Route ist in der Spezifikation deklariert, aber noch nicht implementiert — sie antwortet mit 501.

Not implemented; always 501.

AuthentifizierungToken erforderlichAdmin tier. Requires an RBAC-gated vnstat_ access token, sent as Authorization: Bearer … or X-Vinosoft-Access-Token.

Antworten

curl -X GET \
  'https://<your-shop-domain>/api/2026-04-01/admin/orders' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer vnstat_<token>'
POST

/api/{version}/admin/orders

Nicht implementiert

Diese Route ist in der Spezifikation deklariert, aber noch nicht implementiert — sie antwortet mit 501.

Not implemented; always 501 and nothing is created.

AuthentifizierungToken erforderlichAdmin tier. Requires an RBAC-gated vnstat_ access token, sent as Authorization: Bearer … or X-Vinosoft-Access-Token.

Antworten

curl -X POST \
  'https://<your-shop-domain>/api/2026-04-01/admin/orders' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer vnstat_<token>'
GET

/api/{version}/admin/orders/{id}

Nicht implementiert

Diese Route ist in der Spezifikation deklariert, aber noch nicht implementiert — sie antwortet mit 501.

Not implemented; always 501, including for an id that exists.

AuthentifizierungToken erforderlichAdmin tier. Requires an RBAC-gated vnstat_ access token, sent as Authorization: Bearer … or X-Vinosoft-Access-Token.

Pfad-Parameter

NameTypBeschreibung
id
erforderlich
string (uuid)

Antworten

curl -X GET \
  'https://<your-shop-domain>/api/2026-04-01/admin/orders/<id>' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer vnstat_<token>'
PUT

/api/{version}/admin/orders/{id}

Nicht implementiert

Diese Route ist in der Spezifikation deklariert, aber noch nicht implementiert — sie antwortet mit 501.

Not implemented; always 501 and nothing is modified.

AuthentifizierungToken erforderlichAdmin tier. Requires an RBAC-gated vnstat_ access token, sent as Authorization: Bearer … or X-Vinosoft-Access-Token.

Pfad-Parameter

NameTypBeschreibung
id
erforderlich
string (uuid)

Antworten

curl -X PUT \
  'https://<your-shop-domain>/api/2026-04-01/admin/orders/<id>' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer vnstat_<token>'
DELETE

/api/{version}/admin/orders/{id}

Nicht implementiert

Diese Route ist in der Spezifikation deklariert, aber noch nicht implementiert — sie antwortet mit 501.

Not implemented; always 501 and nothing is deleted.

AuthentifizierungToken erforderlichAdmin tier. Requires an RBAC-gated vnstat_ access token, sent as Authorization: Bearer … or X-Vinosoft-Access-Token.

Pfad-Parameter

NameTypBeschreibung
id
erforderlich
string (uuid)

Antworten

curl -X DELETE \
  'https://<your-shop-domain>/api/2026-04-01/admin/orders/<id>' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer vnstat_<token>'

Schemas

ApiErrorResponse

The error envelope every non-2xx response from this API uses. Documentation shape: actions build it as an anonymous object, so this type exists to give the OpenAPI document a schema to point at.

  • errorsstringnullable

    Human-readable description of what went wrong, e.g. Not Found, Invalid page_info.

  • codestringnullable

    Machine-readable error code. Only a few endpoints (checkout) emit one; omitted everywhere else.

Orders 2026-04-01 | API-Referenz | Vinosoft