Skip to main content
Feedback

Application object

The Application object enables you to create, update, delete, query, or get an application without using the API Management interface.

Structure

<Application applicationID="" applicationName="" companyName="" companyWebsite="" contactName="" contactEmail="" contactPhone="" deleted="" enabled="" description="" notes=""> </Application>
FieldTypeDescription
applicationIDstringA unique ID for the Application.
applicationNamestringThe name of the Application.
companyNamestringThe name of the company who owns the Application.
companyWebsitestringThe website address of the company who owns the Application.
contactNamestringThe name of the person within the company who you can contact about the Application.
contactEmailstringThe contact person’s email address.
contactPhonestringThe contact person’s phone number.
deletedbooleanIf you deleted the Application.
enabledbooleanIf you enabled the Application.
descriptionstringA description of the Application.
notesstringAccount notes for the Application.

Supported operations

The following operations support the Application object:

GETQUERYCREATEUPDATEDELETE
✅ Supported✅ Supported✅ Supported✅ Supported✅ Supported

You can use the following fields as QUERY filters for the Application object:

FieldAllowed values
applicationIDAny string value.
applicationNameAny string value.
companyNameAny string value.
deletedTrue – Deleted the Application.
False - Did not delete the Application.
enabledTrue - Enabled the Application.
False - Disabled the Application.

Implementation

Send an HTTP GET to:

https://api.boomi.com/apim/api/rest/v1/{accountId}/Application/id

where accountId is the Boomi API Management account from which you authenticate, and id is the Application object you are attempting to GET.

For a JSON response, send the request with the following HTTP header:

Accept: application/json

Response

{
"@type": "Application",
"description": "Boomi testing",
"notes": "new application",
"applicationId": "d2694eb5-d5b2-43c9-a655-903c3fca9e07",
"applicationName": "newApp",
"contactName": "test",
"contactEmail": "test@boomi.com",
"contactPhone": "123-456-7890",
"companyName": "Boomi",
"companyWebsite": "",
"enabled": false,
"deleted": false
}
On this Page