GET Account by ID
Playground
GETEndpoint:
/api/data/v1/accounts/{account_id}
Example:
| Property Name | Type | Required | Description |
|---|---|---|---|
| account_id | String | yes | The unique identifier for the account. |
Description of the Response with an example of the data
GET all accounts
Playground
GETEndpoint:
/api/data/v1/accounts/
Example:
Description of the Response with an example of the data
Search Accounts by Name
Playground
POSTEndpoint:
/api/search/v1/query
Example:
| Property Name | Type | Required | Description |
|---|---|---|---|
| count | Number | no | How many results to return, default is 10 |
| offset | Number | no | The results offset, default is 0 |
| query | String | yes | The search query string |
| filters | Array of Filter | no | Filters to apply to the search. |
| facetValuesToInclude | Array of String | no | Facet values to include in the search results. |
| queryProfile | String | no | The query profile to use (e.g., GLOBAL) |
| entityList | Array of Array | yes | The entity list to search within (e.g., ["account"]) |
| sort | Object | no | Sort options, including the field and order. |
Description of the Response with an example of the data
Create Account
Playground
POSTEndpoint:
/api/data/v1/accounts
Example:
| Property Name | Type | Required | Description |
|---|---|---|---|
| displayName | String | yes | The name of the new account. |
| accountType | String | yes | The type of account (e.g., “Standard”). |
Description of the Response with an example of the data