Completed Steps

Get Process completed Steps

GET https://biometrid.com/api/processes/:id/completed-steps

This endpoint allows you to get the completed steps of a process.

Path Parameters

Name
Type
Description

id

string

ID of the process to get

Headers

Name
Type
Description

Accept-Language

string

en (default), pt

Authorization

string

Authentication account token

{
  "data": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "actions": [
        {
          "type": "string",
          "fields": [
            {
              "type": "string",
              "alias": "string",
              "label": "string",
              "options": [
                {
                  "value": "string",
                  "label": "string"
                },
              ],
              "rules": [
                {
                  "type": "string"
                },
              ]
            },
          ],
          "settings": {}
        }
      ],
    }
  ],
  "meta": {
    "message": "Success."
  },
  "status": true
}

Last updated

Was this helpful?