Boomi MFT - AFT Management API Reference (v1) - Flow
Download OpenAPI Specification: Download
Retrieves a specific flow configuration by ID
Requires flow read permissions to access flow configuration data.
Authorizations:
query Parameters
| flowId | integer <int32> The unique identifier of the flow to retrieve |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Response samples
- 200
- 401
- 403
- 404
- 500
Retrieves a specific flow configuration by name
Requires flow read permissions to access flow configuration data.
Authorizations:
query Parameters
| flowName | string The name of the flow to retrieve |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Response samples
- 200
- 401
- 403
- 404
- 500
Retrieves a list of all flow configurations
Requires flow read permissions to access flow configuration list.
Authorizations:
Responses
Response Schema:
| id | integer <int32> |
| flowStatusId | integer <int32> |
| name | string or null |
| code | string or null |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| isBroadcast | boolean |
| retentionPolicyId | integer <int32> |
| connectorId | integer <int32> |
| description | string or null |
| subscriberCount | integer <int32> |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
Response samples
- 200
- 401
- 403
- 500
Updates the operational status of a flow
Requires flow update permissions to modify flow operational status. Request body must contain valid FlowUpdate model data.
Authorizations:
Request Body schema:
Flow update request containing flow ID and new enabled status
| flowId | integer <int32> |
| enabled | boolean |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Request samples
- Payload
{- "flowId": 0,
- "enabled": true
}Response samples
- 200
- 400
- 401
- 403
- 404
- 500
Updates an existing flow configuration
Requires flow update permissions to modify flow configurations. Request body must contain valid Flows model data.
Authorizations:
Request Body schema:
Complete flow model with updated configuration settings
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Request samples
- Payload
{- "id": 0,
- "tenantId": 0,
- "name": "string",
- "flowStatusId": 0,
- "isBroadcast": true,
- "isPublished": true,
- "isIPaaSSubscription": true,
- "connectorId": 0,
- "code": "string",
- "description": "string",
- "createdBy": "string",
- "createdDate": "2019-08-24T14:15:22Z",
- "updatedBy": "string",
- "updatedDate": "2019-08-24T14:15:22Z",
- "deletedBy": "string",
- "deletedDate": "2019-08-24T14:15:22Z",
- "contactId": 0
}Response samples
- 200
- 400
- 401
- 403
- 404
- 500
Creates a new flow configuration
Requires flow create permissions to create new flow configurations. Request body must contain valid Flows model data.
Authorizations:
Request Body schema:
Complete flow model with configuration settings for the new flow
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Responses
Response Schema:
| id | integer <int32> |
| tenantId | integer <int32> |
| name | string or null |
| flowStatusId | integer <int32> |
| isBroadcast | boolean |
| isPublished | boolean |
| isIPaaSSubscription | boolean |
| connectorId | integer <int32> |
| code | string or null |
| description | string or null |
| createdBy | string or null |
| createdDate | string or null <date-time> |
| updatedBy | string or null |
| updatedDate | string or null <date-time> |
| deletedBy | string or null |
| deletedDate | string or null <date-time> |
| contactId | integer or null <int32> |
Request samples
- Payload
{- "id": 0,
- "tenantId": 0,
- "name": "string",
- "flowStatusId": 0,
- "isBroadcast": true,
- "isPublished": true,
- "isIPaaSSubscription": true,
- "connectorId": 0,
- "code": "string",
- "description": "string",
- "createdBy": "string",
- "createdDate": "2019-08-24T14:15:22Z",
- "updatedBy": "string",
- "updatedDate": "2019-08-24T14:15:22Z",
- "deletedBy": "string",
- "deletedDate": "2019-08-24T14:15:22Z",
- "contactId": 0
}Response samples
- 200
- 400
- 401
- 403
- 500
Immediately executes a specific flow endpoint
Authorizations:
query Parameters
| flowEndpointId | integer <int32> The unique identifier of the flow endpoint to execute |
| flowId | integer <int32> The unique identifier of the parent flow |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 404
- 500
Immediately executes a specific flow endpoint using request body
Authorizations:
Request Body schema:
Flow endpoint execution request containing the endpoint identifier
| flowEndpointId | integer <int32> |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Request samples
- Payload
{- "flowEndpointId": 0
}Response samples
- 200
- 400
- 401
- 403
- 500
Retrieves FileZilla FTP client configuration for multiple flows
Authorizations:
Request Body schema:
List of flow identifiers to generate configuration for
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Request samples
- Payload
[- 0
]Response samples
- 200
- 400
Exports multiple flow configurations for backup or migration
Authorizations:
Request Body schema:
List of flow identifiers to export
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Request samples
- Payload
[- 0
]Response samples
- 200
- 400
- 404
Retrieves transfer requests for a flow
Authorizations:
query Parameters
| flowId | integer <int32> The unique identifier of the flow |
| fromDate | string <date-time> Optional start date filter for transfer requests |
| toDate | string <date-time> Optional end date filter for transfer requests |
object Optional additional filters for transfer request search |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
Initiates an asynchronous job to apply a flow configuration
Authorizations:
Request Body schema:
Apply flow job request containing the flow identifier
| flowId | integer <int32> |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Request samples
- Payload
{- "flowId": 0
}Response samples
- 200
- 400