Boomi MFT - AFT Management API Reference (v1) - FlowEndpointServerUsers
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 server user configuration by ID
Returns server user configuration including username, authentication type, and credentials.
Authorizations:
path Parameters
| flowEndpointServerUserId required | integer <int32> Unique identifier of the server user configuration |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Response samples
- 200
- 401
- 403
- 500
Deletes a specific server user configuration
Removes server user configuration from flow endpoint.
Authorizations:
path Parameters
| flowEndpointServerUserId required | integer <int32> Unique identifier of the server user configuration to delete |
Responses
Response Schema:
object (thruStatus) | |
| data | any or null |
Response samples
- 200
- 401
- 403
- 404
- 500
Retrieves all server user configurations for a specific flow endpoint
Returns list of server user configurations for a flow endpoint.
Authorizations:
query Parameters
| flowEndpointId | integer <int32> Unique identifier of the flow endpoint |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Response samples
- 200
- 401
- 403
- 500
Creates a new server user configuration for a flow endpoint
Establishes new server user with authentication credentials and access settings.
Authorizations:
Request Body schema:
Server user configuration details including credentials and access settings
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "isEnabled": true,
- "username": "string",
- "authTypeId": 0,
- "userPassword": "string",
- "certificateId": 0,
- "sshKeyId": 0,
- "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"
}Response samples
- 200
- 401
- 403
- 500
Updates an existing server user configuration for a flow endpoint
Modifies existing server user configuration including credentials and authentication type.
Authorizations:
Request Body schema:
Updated server user configuration details
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "isEnabled": true,
- "username": "string",
- "authTypeId": 0,
- "userPassword": "string",
- "certificateId": 0,
- "sshKeyId": 0,
- "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"
}Response samples
- 200
- 401
- 403
- 500
Saves server user 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:
Server user configuration to save (performs upsert based on record ID)
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Responses
Response Schema:
| id | integer <int32> |
| flowEndpointId | integer <int32> |
| isEnabled | boolean |
| username | string or null |
| authTypeId | integer or null <int32> |
| userPassword | string or null |
| certificateId | integer or null <int32> |
| sshKeyId | integer or null <int32> |
| 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> |
Request samples
- Payload
{- "id": 0,
- "flowEndpointId": 0,
- "isEnabled": true,
- "username": "string",
- "authTypeId": 0,
- "userPassword": "string",
- "certificateId": 0,
- "sshKeyId": 0,
- "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"
}Response samples
- 200
- 401
- 403
- 500