Flow Version Variables

Create Flow Version Variable

post

Creates a new variable for a flow version. Requires a type and key, and optionally accepts a value, date_format, and secret flag.

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Path parameters
flow_versionstringRequired

The flow version identifier.

Body
typestringRequired
keystring · min: 1Required
valuestring · max: 1024Optional
date_formatstring · nullableOptional
secretstringOptional
Responses
chevron-right
200

Successful response

application/json
post
/api/v1/flow-versions/{flow_version}/variables

Update Flow Version Variable

put

Updates an existing flow version variable. Accepts type, key, value, date_format, and secret flag.

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Path parameters
flow_versionstringRequired

The flow version identifier.

variablestringRequired

The variable identifier.

Body
typestringRequired
keystring · min: 1Required
valuestring · max: 1024Optional
date_formatstring · nullableOptional
secretstringOptional
Responses
chevron-right
200

Successful response

application/json
put
/api/v1/flow-versions/{flow_version}/variables/{variable}

Delete Flow Version Variable

delete

Permanently deletes a specific flow version variable.

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Path parameters
flow_versionstringRequired

The flow version identifier.

variablestringRequired

The variable identifier.

Responses
chevron-right
200

Successful response

application/json
messagestringOptional
delete
/api/v1/flow-versions/{flow_version}/variables/{variable}

Last updated

Was this helpful?