Boomi Platform Partner 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.
Creates an Account object
The CREATE operation creates an account based on the supplied name and trial expiration date (maximum of 90 days in the future).
CREATE is available only through the Partner API; you cannot use the accountId override parameter. The Partner API also supports a separate Account Provision operation for provisioning sub-accounts with specified features.
Note: You cannot use the CREATE operation to provision or dictate the number of Runtime clusters available on an account.
Authorizations:
query Parameters
| overrideAccount | string Makes the inquiry on a child account |
Request Body schema: optional
| 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 |
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 |
Request samples
- Payload
{- "name": "Test Account",
- "expirationDate": "2016-02-13T05:00:00Z"
}Response samples
- 200
- 403
- 410
- 503
{- "Account": {
- "supportLevel": "standard",
- "supportAccess": "true",
- "dateCreated": "2015-02-06T15:42:10Z",
- "status": "active",
- "expirationDate": "2016-02-13T05:00:00Z",
- "name": "Test Account",
- "accountId": "testaccount-W4N2RM",
- "licensing": null
}
}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 Bulk GET operations.
Authorizations:
query Parameters
| overrideAccount | string Makes the inquiry on a child account |
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 maximum number of results returned per QUERY response is 100. This response includes a queryToken element, which means there are more than 100 results to retrieve. The Query paging topic describes how to use a queryMore call to retrieve more results.
Authorizations:
query Parameters
| overrideAccount | string Makes the inquiry on a child account |
Request Body schema: optional
Possible properties include: ACCOUNTID, DATECREATED, EXPIRATIONDATE, NAME, STATUS, WIDGETACCOUNT, OVERDEPLOYED
required | object | ||||||||||
| |||||||||||
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string |
Array of objects (Account) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "operator": "and",
- "xsi_type": "GroupingExpression",
- "nestedExpression": [
- {
- "operator": "NOT_EQUALS",
- "property": "status",
- "xsi_type": "SimpleExpression",
- "argument": "deleted"
}, - {
- "operator": "BETWEEN",
- "property": "dateCreated",
- "xsi_type": "SimpleExpression",
- "argument": [
- "2014-01-01T00:00:00Z",
- "2016-01-01T00:00:00Z"
]
}
]
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "QueryResult": {
- "numberOfResults": "100",
- "queryToken": "EXAMPLE_QUERY_TOKEN",
- "result": [
- {
- "xsi_type": "Account",
- "supportLevel": "standard",
- "supportAccess": "true",
- "suggestionsEnabled": "false",
- "dateCreated": "2010-02-22T15:43:03Z",
- "expirationDate": "2016-03-18T05:00:00Z",
- "status": "active",
- "name": "ABC Co",
- "accountId": "abc-H566GG",
- "licensing": {
- "standard": {
- "used": "0",
- "purchased": "0"
}, - "smallBusiness": {
- "used": "0",
- "purchased": "0"
}, - "enterprise": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartner": {
- "used": "0",
- "purchased": "0"
}, - "standardTest": {
- "used": "0",
- "purchased": "0"
}, - "smallBusinessTest": {
- "used": "0",
- "purchased": "0"
}, - "enterpriseTest": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartnerTest": {
- "used": "0",
- "purchased": "0"
}
}, - "molecule": {
- "purchased": "40",
- "used": "8"
}
}, - {
- "xsi_type": "Account",
- "supportLevel": "standard",
- "supportAccess": "true",
- "dateCreated": "2010-06-07T17:42:18Z",
- "expirationDate": "2016-09-07T05:00:00Z",
- "status": "active",
- "name": "Boomi Inc",
- "accountId": "xyz-V3M1QL",
- "licensing": {
- "standard": {
- "used": "0",
- "purchased": "0"
}, - "smallBusiness": {
- "used": "0",
- "purchased": "0"
}, - "enterprise": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartner": {
- "used": "0",
- "purchased": "0"
}, - "standardTest": {
- "used": "0",
- "purchased": "0"
}, - "smallBusinessTest": {
- "used": "0",
- "purchased": "0"
}, - "enterpriseTest": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartnerTest": {
- "used": "0",
- "purchased": "0"
}
}, - "molecule": {
- "purchased": "500",
- "used": "1"
}
}
]
}
}Retrieves additional results for an Account query
To learn about using queryMore, refer to Query paging.
Authorizations:
query Parameters
| overrideAccount | string Makes the inquiry on a child account |
Request Body schema: text/plainrequired
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string |
Array of objects (Account) |
Response samples
- 200
- 403
- 410
- 503
{- "QueryResult": {
- "numberOfResults": "100",
- "queryToken": "EXAMPLE_QUERY_TOKEN",
- "result": [
- {
- "xsi_type": "Account",
- "supportLevel": "standard",
- "supportAccess": "true",
- "suggestionsEnabled": "false",
- "dateCreated": "2010-02-22T15:43:03Z",
- "expirationDate": "2016-03-18T05:00:00Z",
- "status": "active",
- "name": "ABC Co",
- "accountId": "abc-H566GG",
- "licensing": {
- "standard": {
- "used": "0",
- "purchased": "0"
}, - "smallBusiness": {
- "used": "0",
- "purchased": "0"
}, - "enterprise": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartner": {
- "used": "0",
- "purchased": "0"
}, - "standardTest": {
- "used": "0",
- "purchased": "0"
}, - "smallBusinessTest": {
- "used": "0",
- "purchased": "0"
}, - "enterpriseTest": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartnerTest": {
- "used": "0",
- "purchased": "0"
}
}, - "molecule": {
- "purchased": "40",
- "used": "8"
}
}, - {
- "xsi_type": "Account",
- "supportLevel": "standard",
- "supportAccess": "true",
- "dateCreated": "2010-06-07T17:42:18Z",
- "expirationDate": "2016-09-07T05:00:00Z",
- "status": "active",
- "name": "Boomi Inc",
- "accountId": "xyz-V3M1QL",
- "licensing": {
- "standard": {
- "used": "0",
- "purchased": "0"
}, - "smallBusiness": {
- "used": "0",
- "purchased": "0"
}, - "enterprise": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartner": {
- "used": "0",
- "purchased": "0"
}, - "standardTest": {
- "used": "0",
- "purchased": "0"
}, - "smallBusinessTest": {
- "used": "0",
- "purchased": "0"
}, - "enterpriseTest": {
- "used": "0",
- "purchased": "0"
}, - "tradingPartnerTest": {
- "used": "0",
- "purchased": "0"
}
}, - "molecule": {
- "purchased": "500",
- "used": "1"
}
}
]
}
}Retrieves an instance of an Account object
Returns a single Account object based on the supplied account ID.
Authorizations:
path Parameters
| id required | string |
query Parameters
| overrideAccount | string Makes the inquiry on a child account |
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
{- "Account": {
- "accountId": "boomiqa-T7KIDU",
- "name": "BoomiQA",
- "status": "active",
- "dateCreated": "2022-09-02T20:16:28Z",
- "widgetAccount": "false",
- "supportAccess": "true",
- "supportLevel": "standard",
- "licensing": {
- "standard": {
- "purchased": "1000000",
- "used": "60"
}, - "smallBusiness": {
- "purchased": "1000000",
- "used": "0"
}, - "enterprise": {
- "purchased": "1000000",
- "used": "0"
}, - "tradingPartner": {
- "purchased": "100000",
- "used": "3"
}, - "standardTest": {
- "purchased": "1000",
- "used": "0"
}, - "smallBusinessTest": {
- "purchased": "1000",
- "used": "0"
}, - "enterpriseTest": {
- "purchased": "1000",
- "used": "0"
}, - "tradingPartnerTest": {
- "purchased": "1000",
- "used": "0"
}
}, - "molecule": {
- "purchased": "10",
- "used": "0"
}
}
}Deletes an Account object
The DELETE operation deletes an account based on the supplied account ID.
The DELETE operation is available only through the Partner API; you cannot use the
accountIdoverride parameter.
Authorizations:
path Parameters
| id required | string |
query Parameters
| overrideAccount | string Makes the inquiry on a child account |
Responses
Response samples
- 200
- 403
- 410
- 503
{- "message": "Operation completed successfully."
}