POST {version}/GetTransactionAccounts

Get Accounts

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

Query
NameDescriptionTypeAdditional information
ActiveOnly

boolean

None.

Ids

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "ActiveOnly": true,
  "Ids": [
    "99c58817-f256-4aaf-9418-047167565acf",
    "08021b31-2328-4141-af14-341d33cc54e1"
  ]
}

application/xml, text/xml

Sample:
<Query xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
  <ActiveOnly>true</ActiveOnly>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>99c58817-f256-4aaf-9418-047167565acf</d2p1:guid>
    <d2p1:guid>08021b31-2328-4141-af14-341d33cc54e1</d2p1:guid>
  </Ids>
</Query>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

List of Account

Collection of Account
NameDescriptionTypeAdditional information
GUID

globally unique identifier

None.

Name

string

None.

Active

boolean

None.

pcm_GUID

globally unique identifier

None.

id

globally unique identifier

None.

Default

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GUID": "5a5f5442-348b-4bc2-89e2-0eedcdfc378d",
    "Name": "sample string 2",
    "Active": true,
    "pcm_GUID": "aa693514-e4db-42b3-b93e-84c8738253d7",
    "id": "5a5f5442-348b-4bc2-89e2-0eedcdfc378d",
    "Default": true
  },
  {
    "GUID": "5a5f5442-348b-4bc2-89e2-0eedcdfc378d",
    "Name": "sample string 2",
    "Active": true,
    "pcm_GUID": "aa693514-e4db-42b3-b93e-84c8738253d7",
    "id": "5a5f5442-348b-4bc2-89e2-0eedcdfc378d",
    "Default": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
  <Account>
    <Active>true</Active>
    <Default>true</Default>
    <GUID>5a5f5442-348b-4bc2-89e2-0eedcdfc378d</GUID>
    <Name>sample string 2</Name>
    <pcm_GUID>aa693514-e4db-42b3-b93e-84c8738253d7</pcm_GUID>
  </Account>
  <Account>
    <Active>true</Active>
    <Default>true</Default>
    <GUID>5a5f5442-348b-4bc2-89e2-0eedcdfc378d</GUID>
    <Name>sample string 2</Name>
    <pcm_GUID>aa693514-e4db-42b3-b93e-84c8738253d7</pcm_GUID>
  </Account>
</ArrayOfAccount>