Skip to main content
POST
/
api
/
v1
/
workflows
/
{workflow_id}
/
notifications
/
channels
/
{channel_id}
/
verify
Verify Workflow Channel
curl --request POST \
  --url https://platform.unstructuredapp.io/api/v1/workflows/{workflow_id}/notifications/channels/{channel_id}/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Headers

unstructured-api-key
string | null

Path Parameters

workflow_id
string<uuid>
required
channel_id
string
required

Body

application/json

Request to verify an email channel with a verification code.

code
string
required

6-digit verification code sent to the channel's email address

Required string length: 6
Pattern: ^\d{6}$

Response

Successful Response