POST AddAccounts

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

None.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "AccountsImported": 1,
  "AccountsFailed": 2,
  "Responses": [
    {
      "Success": true,
      "Messages": [
        "sample string 1",
        "sample string 2",
        "sample string 3"
      ],
      "Account": 2,
      "AccountID": 3
    },
    {
      "Success": true,
      "Messages": [
        "sample string 1",
        "sample string 2",
        "sample string 3"
      ],
      "Account": 2,
      "AccountID": 3
    },
    {
      "Success": true,
      "Messages": [
        "sample string 1",
        "sample string 2",
        "sample string 3"
      ],
      "Account": 2,
      "AccountID": 3
    }
  ],
  "valid": true,
  "message": "sample string 4"
}

application/xml, text/xml

Sample:
<AddAccountsResponse>
  <valid>true</valid>
  <message>sample string 4</message>
  <AccountsImported>1</AccountsImported>
  <AccountsFailed>2</AccountsFailed>
  <Responses>
    <ImportAccountResult>
      <Success>true</Success>
      <Messages>
        <string>sample string 1</string>
        <string>sample string 2</string>
        <string>sample string 3</string>
      </Messages>
      <Account>2</Account>
      <AccountID>3</AccountID>
    </ImportAccountResult>
    <ImportAccountResult>
      <Success>true</Success>
      <Messages>
        <string>sample string 1</string>
        <string>sample string 2</string>
        <string>sample string 3</string>
      </Messages>
      <Account>2</Account>
      <AccountID>3</AccountID>
    </ImportAccountResult>
    <ImportAccountResult>
      <Success>true</Success>
      <Messages>
        <string>sample string 1</string>
        <string>sample string 2</string>
        <string>sample string 3</string>
      </Messages>
      <Account>2</Account>
      <AccountID>3</AccountID>
    </ImportAccountResult>
  </Responses>
</AddAccountsResponse>