Boomi MFT - AFT Management API Reference (v1) - FlowEndpointRenameOptions
Download OpenAPI Specification: Download
For more information about Postman collections, forking, and making your first API call, refer to the Working with Boomi APIs on Postman page.
Retrieves a specific file rename configuration by ID
Returns file rename configuration including regex patterns and path assignments.
Authorizations:
path Parameters
| flowEndpointRenameOptionId required | integer <int32> Unique identifier of the file rename configuration |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Response samples
- 200
- 401
- 403
- 404
- 500
Deletes a specific file rename configuration
Removes file rename configuration from flow endpoint.
Authorizations:
path Parameters
| flowEndpointRenameOptionId required | integer <int32> Unique identifier of the file rename configuration to delete |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 404
- 500
Retrieves all file rename configurations for a specific flow endpoint
Returns list of file rename configurations for a flow endpoint.
Authorizations:
query Parameters
| flowEndpointId required | integer <int32> Unique identifier of the flow endpoint (required) |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Response samples
- 200
- 401
- 403
- 500
Creates a new file rename configuration for a flow endpoint
Establishes new file rename rule with regex pattern and replacement settings.
Authorizations:
Request Body schema:
File rename configuration details including patterns and replacement rules
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "name": "string",
- "filter": "string",
- "regexString": "string",
- "testString": "string",
- "jsonString": "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",
- "assignedPathIdList": [
- 0
]
}Response samples
- 200
- 401
- 403
- 500
Updates an existing file rename configuration for a flow endpoint
Modifies existing file rename configuration including patterns and path assignments.
Authorizations:
Request Body schema:
Updated file rename configuration details
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "name": "string",
- "filter": "string",
- "regexString": "string",
- "testString": "string",
- "jsonString": "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",
- "assignedPathIdList": [
- 0
]
}Response samples
- 200
- 401
- 403
- 500
Saves file rename configuration (creates new or updates existing based on ID)
Performs upsert operation: creates new configuration if ID is 0, otherwise updates existing configuration
Authorizations:
Request Body schema:
File rename configuration to save (performs upsert based on record ID)
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| name | string or null |
| filter | string or null |
| regexString | string or null |
| testString | string or null |
| jsonString | 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> |
| assignedPathIdList | Array of integers or null <int32> [ items <int32 > ] |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "name": "string",
- "filter": "string",
- "regexString": "string",
- "testString": "string",
- "jsonString": "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",
- "assignedPathIdList": [
- 0
]
}Response samples
- 200
- 401
- 403
- 500
Deletes all file rename configurations for a specific flow endpoint
Removes all file rename configurations from a flow endpoint.
Authorizations:
query Parameters
| flowEndpointId required | integer <int32> Unique identifier of the flow endpoint to remove all file rename configurations for |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 500