Boomi Data Integration API Reference (1.0.0) - Connections
Delete Connection
Authorization scope: connection:delete
This endpoint deletes a connection
Authorizations:
HTTPBearer
path Parameters
| account_id required | string (Account Id) |
| environment_id required | string (Environment Id) |
| connection_cross_id required | string (Connection Cross Id) |
Responses
Response Schema: application/json
any
Response samples
- 200
- 422
Content type
application/json
nullGet Connections Types
Authorization scope: connection:list
Get all connection types entities as a paginated list
Authorizations:
HTTPBearer
query Parameters
| items_per_page | integer (Items Per Page) [ 1 .. 500 ] Default: 20 The number of items per page in the paginated list. |
| page | integer (Page) >= 1 Default: 1 The current page number in the paginated list. |
Responses
Response Schema: application/json
| current_page_size required | integer (Current Page Size) The current page size |
required | Array of objects (Items) |
Next Page (string) or Next Page (null) (Next Page) The next page URL | |
Previous Page (string) or Previous Page (null) (Previous Page) The previous page URL | |
| page | integer (Page) Default: 1 The page number |
| total_items | integer (Total Items) Default: 0 The total number of entities fetched |
Response samples
- 200
- 422
Content type
application/json
{- "current_page_size": 1,
- "items": [
- {
- "fields": {
- "_id": "5643062270ec07e624d4320d",
- "allowed_file_extensions": [ ],
- "connection_type": "spotx",
- "connection_type_name": "SpotX",
- "has_key_file": false,
- "is_test_connection": true,
- "oauth2": false,
- "properties": [
- {
- "id": "username",
- "type": "string",
- "ui_type": "text",
- "display_name": "Username",
- "row": 0
}, - {
- "id": "password",
- "type": "password",
- "ui_type": "password",
- "display_name": "Password",
- "row": 1
}, - {
- "id": "connection_name",
- "type": "string"
}, - {
- "id": "connection_desc",
- "type": "string"
}
]
}
}
], - "page": 1,
- "total_items": 189
}Get Connection Type
Authorization scope: connection:list
Get a specific connection type entity
Authorizations:
HTTPBearer
path Parameters
| connection_type required | string (Connection Type) |
Responses
Response Schema: application/json
| connection_type required | string (Connection Type) |
| connection_type_name required | string (Connection Type Name) |
| properties required | Array of objects (Properties) |
Response samples
- 200
- 422
Content type
application/json
{- "connection_type": "string",
- "connection_type_name": "string",
- "properties": [
- { }
]
}Was this topic helpful?
