Below are the various requests that can be performed against the
Flow Versions resource, as well as the expected
parameters and the potential responses.
Delete
Delete flow versions
Method And Url
POST https://api.app.wnology.io/applications/APPLICATION_ID/flows/FLOW_ID/versions/delete
Authentication
A valid api access token is required to access this endpoint. The token must
include at least one of the following scopes:
all.Application, all.Organization, all.User, flowVersions.*, or flowVersions.delete.
Request Path Components
Path Component
Description
Example
APPLICATION_ID
ID associated with the application
575ec8687ae143cd83dc4a97
FLOW_ID
ID associated with the flow
575ed18f7ae143cd83dc4aa6
Request Headers
Name
Required
Description
Default
Authorization
Y
The token for authenticating the request, prepended with Bearer
Request Body
The body of the request should be serialized JSON that validates against
the Flow Versions Delete Post schema. For example, the following would be a
valid body for this request:
GET https://api.app.wnology.io/applications/APPLICATION_ID/flows/FLOW_ID/versions
Authentication
A valid api access token is required to access this endpoint. The token must
include at least one of the following scopes:
all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, flowVersions.*, or flowVersions.get.
Request Path Components
Path Component
Description
Example
APPLICATION_ID
ID associated with the application
575ec8687ae143cd83dc4a97
FLOW_ID
ID associated with the flow
575ed18f7ae143cd83dc4aa6
Request Query Parameters
Name
Required
Description
Default
Example
sortField
N
Field to sort the results by. Accepted values are: version, id, creationDate, lastUpdated
version
sortField=version
sortDirection
N
Direction to sort the results by. Accepted values are: asc, desc
asc
sortDirection=asc
page
N
Which page of results to return
0
page=0
perPage
N
How many items to return per page
100
perPage=10
filterField
N
Field to filter the results by. Blank or not provided means no filtering. Accepted values are: version
filterField=version
filter
N
Filter to apply against the filtered field. Supports globbing. Blank or not provided means no filtering.
filter=my*version
includeCustomNodes
N
If the result of the request should also include the details of any custom nodes referenced by the returned workflows
false
includeCustomNodes=true
query
N
Workflow filter JSON object which overrides the filterField and filter parameters. See Advanced Workflow Version Query for more details.
query={”version”:”theVersion”}
Request Headers
Name
Required
Description
Default
Authorization
Y
The token for authenticating the request, prepended with Bearer
POST https://api.app.wnology.io/applications/APPLICATION_ID/flows/FLOW_ID/versions
Authentication
A valid api access token is required to access this endpoint. The token must
include at least one of the following scopes:
all.Application, all.Organization, all.User, flowVersions.*, or flowVersions.post.
Request Path Components
Path Component
Description
Example
APPLICATION_ID
ID associated with the application
575ec8687ae143cd83dc4a97
FLOW_ID
ID associated with the flow
575ed18f7ae143cd83dc4aa6
Request Query Parameters
Name
Required
Description
Default
Example
includeCustomNodes
N
If the result of the request should also include the details of any custom nodes referenced by the returned workflows
false
includeCustomNodes=true
allowReplacement
N
Allow replacement of an existing flow version with same version name
false
allowReplacement=true
Request Headers
Name
Required
Description
Default
Authorization
Y
The token for authenticating the request, prepended with Bearer
Request Body
The body of the request should be serialized JSON that validates against
the Workflow Version Post schema. For example, the following would be a
valid body for this request:
{"version":"v1.2.3","notes":"Notes about my new workflow version","enabled":false}
Curl Example
curl -H 'Content-Type: application/json'\
-H 'Accept: application/json'\
-H 'Authorization: Bearer YOUR_API_ACCESS_TOKEN'\
-X POST \
-d '{"version":"v1.2.3","notes":"Notes about my new workflow version","enabled":false}'\
https://api.app.wnology.io/applications/APPLICATION_ID/flows/FLOW_ID/versions