Boomi Platform API Reference (1.0.0) - Account
The Account object provides information about an account, including the associated users, connector licensing information, and general information.
Note: The ability to create and delete accounts is available only through the Platform Partner API.
Required Privileges
Read and Write access
- API — Use the Boomi Platform API to access account data.
- ACCOUNT_ADMIN — Account configuration and administration.
Retrieves an instance of an Account object
Retrieves a single Account object using the supplied account ID. This GET operation returns details only for the parent account and does not include any accounts created by the parent account.
Authorizations:
path Parameters
| id required | string |
Responses
Response Schema:
| accountId | string The ID of the account. |
| dateCreated | string The creation date of the account. |
| expirationDate | string The scheduled expiration date of the account. |
object (Licensing) Indicates the number of connections used and purchased in each of the connector type and production/test classifications. The classifications include standard, smallBusiness, enterprise, and tradingPartner. | |
object (Molecule) Indicates the number of Runtime clusters available on an account and the number of Runtime clusters currently in use. | |
| name | string The name of the account. |
| overDeployed | boolean Indicates the state of an account if one or more additional deployments are made after all available connection licenses have been used for any of the connector class. |
| status | string Enum: "trial" "active" "suspended" "deleted" "unlimited" The status of the account. The allowed values are active or deleted. |
| suggestionsEnabled | boolean Identifies whether this account has the Boomi Suggest feature enabled. |
| supportAccess | boolean Identifies whether this account allows support user access. |
| supportLevel | string Enum: "standard" "premier" The level of support for this account. The allowed values are standard *or premier. |
| widgetAccount | boolean |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "Account",
- "licensing": {
- "@type": "",
- "standard": {
- "@type": "License",
- "purchased": 1000000,
- "used": 60
}, - "smallBusiness": {
- "@type": "License",
- "purchased": 1000000,
- "used": 0
}, - "enterprise": {
- "@type": "License",
- "purchased": 1000000,
- "used": 0
}, - "tradingPartner": {
- "@type": "License",
- "purchased": 100000,
- "used": 3
}, - "standardTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "smallBusinessTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "enterpriseTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "tradingPartnerTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}
}, - "molecule": {
- "@type": "Molecule",
- "purchased": 10,
- "used": 0
}, - "accountId": "boomiqa-T7KIDU",
- "name": "BoomiQA",
- "status": "active",
- "dateCreated": "2022-09-02T20:16:28Z",
- "widgetAccount": false,
- "supportAccess": true,
- "supportLevel": "standard",
- "overDeployed": false,
- "expirationDate": "2016-02-13T05:00:00Z",
- "suggestionsEnabled": false
}Retrieves multiple Account objects by identifier
The bulk GET operation returns multiple Account objects based on the supplied account IDs, to a maximum of 100. To learn more about bulk, refer to the topic Bulk GET operations.
Authorizations:
Request Body schema: optional
Array of objects (BulkId) | |
| type | string Enum: "GET" "DELETE" "UPDATE" "CREATE" |
Responses
Response Schema:
Array of objects | |||||||||||
Array
| |||||||||||
Request samples
- Payload
{- "request": [
- {
- "id": "56789abc-def0-1234-5678-9abcdef01234"
}
], - "type": "GET"
}Response samples
- 200
- 403
- 410
- 503
{- "response": [
- {
- "Result": {
- "accountId": "boomiqa-T7KIDU",
- "dateCreated": "2022-09-02T20:16:28Z",
- "expirationDate": "string",
- "licensing": {
- "enterprise": {
- "purchased": 2,
- "used": 0
}, - "enterpriseTest": {
- "purchased": 2,
- "used": 0
}, - "smallBusiness": {
- "purchased": 2,
- "used": 0
}, - "smallBusinessTest": {
- "purchased": 2,
- "used": 0
}, - "standard": {
- "purchased": 2,
- "used": 0
}, - "standardTest": {
- "purchased": 2,
- "used": 0
}, - "tradingPartner": {
- "purchased": 2,
- "used": 0
}, - "tradingPartnerTest": {
- "purchased": 2,
- "used": 0
}
}, - "molecule": {
- "purchased": 1,
- "used": 0
}, - "name": "BoomiQA",
- "overDeployed": true,
- "status": "active",
- "suggestionsEnabled": true,
- "supportAccess": "true",
- "supportLevel": "standard",
- "widgetAccount": "false"
}, - "index": 0,
- "id": "string",
- "statusCode": 0,
- "errorMessage": "string"
}
]
}Queries for an Account object(s)
The Account Query API returns accounts that were created by the parent account identified in the request URL.
For general information about the structure of QUERY filters, their sample payloads, and how to handle the paged results, refer to Query filters and Query paging.
Authorizations:
Request Body schema: optional
Possible properties include: ACCOUNTID, DATECREATED, EXPIRATIONDATE, NAME, STATUS, WIDGETACCOUNT, OVERDEPLOYED
required | object | ||||||||||
| |||||||||||
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (Account) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "operator": "and",
- "nestedExpression": [
- {
- "argument": [
- "deleted"
], - "operator": "NOT_EQUALS",
- "property": "status"
}, - {
- "argument": [
- "2014-01-01T00:00:00Z",
- "2016-01-01T00:00:00Z"
], - "operator": "BETWEEN",
- "property": "dateCreated"
}
]
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 100,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "Account",
- "licensing": {
- "@type": "",
- "standard": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "smallBusiness": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "enterprise": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "tradingPartner": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "standardTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "smallBusinessTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "enterpriseTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "tradingPartnerTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}
}, - "molecule": {
- "@type": "Molecule",
- "purchased": 40,
- "used": 8
}, - "accountId": "abc-H566GG",
- "name": "ABC Co",
- "status": "active",
- "dateCreated": "2010-02-22T15:43:03Z",
- "supportAccess": true,
- "suggestionsEnabled": false,
- "supportLevel": "standard",
- "expirationDate": "2016-02-13T05:00:00Z",
- "overDeployed": false,
- "widgetAccount": false
}, - {
- "@type": "Account",
- "licensing": {
- "@type": "",
- "standard": {
- "@type": "License",
- "purchased": 10,
- "used": 2
}, - "smallBusiness": {
- "@type": "License",
- "purchased": 10,
- "used": 0
}, - "enterprise": {
- "@type": "License",
- "purchased": 10,
- "used": 0
}, - "tradingPartner": {
- "@type": "License",
- "purchased": 10,
- "used": 0
}, - "standardTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "smallBusinessTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "enterpriseTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "tradingPartnerTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}
}, - "molecule": {
- "@type": "Molecule",
- "purchased": 500,
- "used": 1
}, - "accountId": "xyz-V3M1QL",
- "name": "Boomi Inc",
- "status": "active",
- "dateCreated": "2010-06-07T17:42:18Z",
- "supportAccess": true,
- "suggestionsEnabled": false,
- "supportLevel": "standard",
- "expirationDate": "2016-02-13T05:00:00Z",
- "overDeployed": false,
- "widgetAccount": false
}
]
}Retrieves additional results for an Account query
To learn about using queryMore, refer to the topic Query paging.
Authorizations:
Request Body schema: text/plainrequired
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (Account) |
Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 100,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "Account",
- "licensing": {
- "@type": "",
- "standard": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "smallBusiness": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "enterprise": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "tradingPartner": {
- "@type": "License",
- "purchased": 0,
- "used": 0
}, - "standardTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "smallBusinessTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "enterpriseTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "tradingPartnerTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}
}, - "molecule": {
- "@type": "Molecule",
- "purchased": 40,
- "used": 8
}, - "accountId": "abc-H566GG",
- "name": "ABC Co",
- "status": "active",
- "dateCreated": "2010-02-22T15:43:03Z",
- "supportAccess": true,
- "suggestionsEnabled": false,
- "supportLevel": "standard",
- "expirationDate": "2016-02-13T05:00:00Z",
- "overDeployed": false,
- "widgetAccount": false
}, - {
- "@type": "Account",
- "licensing": {
- "@type": "",
- "standard": {
- "@type": "License",
- "purchased": 10,
- "used": 2
}, - "smallBusiness": {
- "@type": "License",
- "purchased": 10,
- "used": 0
}, - "enterprise": {
- "@type": "License",
- "purchased": 10,
- "used": 0
}, - "tradingPartner": {
- "@type": "License",
- "purchased": 10,
- "used": 0
}, - "standardTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "smallBusinessTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "enterpriseTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}, - "tradingPartnerTest": {
- "@type": "License",
- "purchased": 1000,
- "used": 0
}
}, - "molecule": {
- "@type": "Molecule",
- "purchased": 500,
- "used": 1
}, - "accountId": "xyz-V3M1QL",
- "name": "Boomi Inc",
- "status": "active",
- "dateCreated": "2010-06-07T17:42:18Z",
- "supportAccess": true,
- "suggestionsEnabled": false,
- "supportLevel": "standard",
- "expirationDate": "2016-02-13T05:00:00Z",
- "overDeployed": false,
- "widgetAccount": false
}
]
}