Retrieve a list of Account Locations for a specific AccountThis REST API will return a list of all Account Locations associated with the Account with the specified ID. The Account with the specified ID must already exist in the system. URL Panel |
---|
borderColor | grey |
---|
bgColor | whitesmoke |
---|
borderStyle | solid |
---|
| GET /seiapi/v3/trans/Account/${AccountID}/Location
|
HTTP Request BodyThis request does not require a request body. HTTP ResponseOn success, an HTTP status code of 200 will be returned, and the response body will contain a collection of Account Location Objects associated with the Account. It is possible for the returned collection to be empty if the Account does not have any Account Locations associated with it. Code Block |
---|
language | js |
---|
firstline | 1 |
---|
title | HTTP Response Body | firstline | 1 |
---|
linenumbers | true |
---|
| {
"Locations" : [
// A collection of zero or more location object.
]
} |
|