Create form implementations (bulk)

POST/forms/form/{uuid}/implementations/many

Path parameters

  • uuidstringRequired#
    Unique identifier for the form.

Request body

Body shape: Request_CreateFormImplementations (required)

Responses

201Form implementations created.Collection_FormImplementationResource
/** Imported from delio-core. */
type Collection_FormImplementationResource = unknown[]
401Unauthorized.Error
404Form not found.Error
curl -X POST https://your-url.com/kong/core/api/gateway/forms/form/{uuid}/implementations/many\
  -H "Authorization: Bearer $DELIO_API_KEY"\
  -H "Content-Type: application/json"\
  -d '{
  "uuid": "00000000-0000-0000-0000-000000000000",
  "assignments": []
}'