Boomi MFT - AFT Management API Reference (v1) - FlowEndpointEncryptionOptions
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 encryption configuration by ID
Returns encryption configuration including PGP key assignments and verification settings.
Authorizations:
path Parameters
| flowEndpointEncryptionOptionId required | integer <int32> Unique identifier of the encryption configuration |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Response samples
- 200
- 403
- 500
Deletes a specific encryption configuration
Removes encryption configuration from flow endpoint.
Authorizations:
path Parameters
| flowEndpointEncryptionOptionId required | integer <int32> Unique identifier of the encryption configuration to delete |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 403
- 500
Retrieves encryption configuration for a specific flow endpoint
Returns encryption configuration for a specific flow endpoint.
Authorizations:
query Parameters
| flowEndpointId | integer <int32> Unique identifier of the flow endpoint |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Response samples
- 200
- 403
- 500
Creates a new encryption configuration for a flow endpoint
Establishes new encryption configuration with PGP key and signing settings.
Authorizations:
Request Body schema:
Encryption configuration details including algorithms and key management settings
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "pgpKeyId": 0,
- "createdBy": "string",
- "createdDate": "2019-08-24T14:15:22Z",
- "updatedBy": "string",
- "updatedDate": "2019-08-24T14:15:22Z",
- "deletedBy": "string",
- "deletedDate": "2019-08-24T14:15:22Z",
- "isVerify": true,
- "verifyPgpKeyId": 0,
- "isSign": true,
- "signPgpKeyId": 0,
- "isAsciiArmor": true
}Response samples
- 200
- 403
- 500
Updates an existing encryption configuration for a flow endpoint
Modifies existing encryption configuration including key assignments and verification.
Authorizations:
Request Body schema:
Updated encryption configuration details
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "pgpKeyId": 0,
- "createdBy": "string",
- "createdDate": "2019-08-24T14:15:22Z",
- "updatedBy": "string",
- "updatedDate": "2019-08-24T14:15:22Z",
- "deletedBy": "string",
- "deletedDate": "2019-08-24T14:15:22Z",
- "isVerify": true,
- "verifyPgpKeyId": 0,
- "isSign": true,
- "signPgpKeyId": 0,
- "isAsciiArmor": true
}Response samples
- 200
- 403
- 500
Saves encryption 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:
Encryption configuration to save (performs upsert based on record ID)
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| pgpKeyId | integer <int32> |
| 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> |
| isVerify | boolean |
| verifyPgpKeyId | integer or null <int32> |
| isSign | boolean |
| signPgpKeyId | integer or null <int32> |
| isAsciiArmor | boolean |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "pgpKeyId": 0,
- "createdBy": "string",
- "createdDate": "2019-08-24T14:15:22Z",
- "updatedBy": "string",
- "updatedDate": "2019-08-24T14:15:22Z",
- "deletedBy": "string",
- "deletedDate": "2019-08-24T14:15:22Z",
- "isVerify": true,
- "verifyPgpKeyId": 0,
- "isSign": true,
- "signPgpKeyId": 0,
- "isAsciiArmor": true
}Response samples
- 200
- 403
- 500
Deletes all encryption configurations for a specific flow endpoint
Removes all encryption configurations from a flow endpoint.
Authorizations:
query Parameters
| flowEndpointId | integer <int32> Unique identifier of the flow endpoint to remove all encryption configurations for |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 403
- 500