PUT /templates/{id}.json

PUT /templates/{id}.json

Path parameters

  • id integer(int64) Required

    Numeric ID of the instance

    Minimum value is 1.

application/json

Body Required

  • 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

PUT /templates/{id}.json
curl \
 -X PUT http://api.example.com/v1/templates/{id}.json \
 -H "Content-Type: application/json" \
 -d '{"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"}'
Request example
{
  "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"
}