Saltar al contenido principal
DELETE
/
v1
/
workflow
/
{flow_id}
Delete a flow
import requests

url = "https://api.diga.io/v1/workflow/{flow_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Autorizaciones

Authorization
string
header
requerido

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

Parámetros de ruta

flow_id
string
requerido

Respuesta

Successful Response