latestOpenAPI 3.0.02026-08-2217901.1 MB

ef9153fcac7c

Procedure Templates

Create procedure template

post/proceduretemplates

Query parameters

skipWebhookboolean

Set skipWebhook=true, skipWebhook=1 or skipWebhook=yes to skip all webhooks upon successful operation on the endpoint. Learn more about webhooks

Headers

x-organization-idinteger

Required if using a multi organizations token

Request body

titlestring required

Example request

{
  "title": "Ladder Inspection Checklist",
  "fields": [
    {
      "label": "Metal Parts: broken, loose, dented, rusty, missing",
      "type": "INSPECTION_CHECK",
      "choices": [
        "Partially"
      ],
      "urls": [
        {
          "label": "MaintainX Website",
          "link": "www.getmaintainx.com"
        }
      ],
      "meterId": 1,
      "index": 1
    }
  ]
}

Response

Successfully created the custom fields

idnumber required

Id of the procedure template

Example response

{
  "id": 1,
  "fields": [
    {
      "id": 1,
      "label": "Metal Parts: broken, loose, dented, rusty, missing",
      "type": "INSPECTION_CHECK",
      "choices": [
        "Partially"
      ],
      "attachmentId": 1,
      "attachments": [
        {
          "id": 12345,
          "mimeType": "image/png",
          "fileName": "image.png",
          "url": "http://example.com/image.png",
          "createdAt": "2022-01-01T00:00:00.000Z",
          "width": 220,
          "height": 100
        }
      ],
      "urls": [
        {
          "label": "MaintainX Website",
          "link": "www.getmaintainx.com"
        }
      ]
    }
  ]
}