GET /templates/{id}.json

GET /templates/{id}.json

Path parameters

  • id integer(int64) Required

    Numeric ID of the instance

    Minimum value is 1.

Responses

  • 200

    Successful response

    Hide response attributes Show response attributes object
    • content string | null

      Content

    • createdAt string(date-time)

      Created at

    • defaultMapping string | null Required

      Default mapping

      Values are custom or royalMail. Default value is custom.

    • delivery string | null Required

      Delivery

      Values are email or webhook. Default value is email.

    • format string Required

      Format

      Values are csv, json, html, xml, csv_mapping, or json_mapping. Default value is csv.

    • id integer(int32)

      Id

    • name string Required

      Name

    • resource string Required

      Resource

      Values are sales, purchases, variants, sale_items, or purchase_items.

    • updatedAt string(date-time)

      Updated at

    • visible boolean Required

      Visible

      Default value is true.

    • webhookEndpoint string | null

      Webhook endpoint

    • xmlDateDormat string | null

      Xml date dormat

GET /templates/{id}.json
curl \
 -X GET http://api.example.com/v1/templates/{id}.json
Response examples (200)
{
  "content": "string",
  "createdAt": "2023-05-04T09:42:00+00:00",
  "defaultMapping": "custom",
  "delivery": "email",
  "format": "csv",
  "id": 42,
  "name": "string",
  "resource": "sales",
  "updatedAt": "2023-05-04T09:42:00+00:00",
  "visible": true,
  "webhookEndpoint": "string",
  "xmlDateDormat": "string"
}