PATCH
/
v1
/
processors
/
{processorId}
curl --request PATCH \
  --url https://app.enzo.health/api/v1/processors/{processorId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "processor": {
    "config": {
      "sections": [
        {
          "name": "<string>",
          "fieldsToExtract": [
            {
              "fieldName": "<string>",
              "description": "<string>"
            }
          ]
        }
      ]
    },
    "name": "<string>"
  }
}'
{
  "processor": {
    "id": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "organizationId": "<string>",
    "creatorId": "<string>",
    "config": {
      "sections": [
        {
          "name": "<string>",
          "fieldsToExtract": [
            {
              "fieldName": "<string>",
              "description": "<string>"
            }
          ]
        }
      ]
    },
    "metadata": {
      "extendWorkflowId": "<string>",
      "extendWorkflowVersion": "<string>"
    },
    "published": true,
    "name": "<string>",
    "type": "EXTRACT"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

processorId
string
required

Body

application/json
processor
object
required

Response

200
application/json
Successful response
processor
object
required