PATCH api/v1/admin/accounts/{id}/credits
This api allows you to give/take credits from/to sub account. For example, transaction from master account to account 3 levels below is not allowed (Has to be 1 level below). You can perform multiple transactions using one api call.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | 
                         Account ID of the master account  | 
                    globally unique identifier | 
                                 Required  | 
                
Body Parameters
Sub accounts and how many credits are being transferred/taken
TwoSms.CustomerPortalRole.API.Admin.Accounts.AccountCreditsTransferRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| Accounts | 
                         List of accounts to transfer credits to.  | 
                    Collection of TwoSms.CustomerPortalRole.API.Admin.Accounts.AccountCreditDetails | 
                             None.  | 
                
| SetBalance | 
                         Determines if sub accounts are set to the given balances.  | 
                    boolean | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "Accounts": [
    {
      "ID": "32317fbb-6941-410e-a8ee-3322cd5b9227",
      "AnyTimeBalance": 2,
      "OffPeakBalance": 3
    },
    {
      "ID": "32317fbb-6941-410e-a8ee-3322cd5b9227",
      "AnyTimeBalance": 2,
      "OffPeakBalance": 3
    }
  ],
  "SetBalance": true
}
        application/xml, text/xml
            Sample:
        
<AccountCreditsTransferRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Accounts>
    <AccountCreditDetails>
      <ID>32317fbb-6941-410e-a8ee-3322cd5b9227</ID>
      <AnyTimeBalance>2</AnyTimeBalance>
      <OffPeakBalance>3</OffPeakBalance>
    </AccountCreditDetails>
    <AccountCreditDetails>
      <ID>32317fbb-6941-410e-a8ee-3322cd5b9227</ID>
      <AnyTimeBalance>2</AnyTimeBalance>
      <OffPeakBalance>3</OffPeakBalance>
    </AccountCreditDetails>
  </Accounts>
  <SetBalance>true</SetBalance>
</AccountCreditsTransferRequest>
        application/x-www-form-urlencoded
            Sample:
    
        
Response Information
Resource Description
TwoSms.CustomerPortalRole.API.Misc.ResponseOfTwoSms.CustomerPortalRole.API.Admin.Accounts.AccountCreditsTransferResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Error | TwoSms.CustomerPortalRole.API.Misc.Error | 
                             None.  | 
                |
| ResponseData | TwoSms.CustomerPortalRole.API.Misc.ResponseDataOfTwoSms.CustomerPortalRole.API.Admin.Accounts.AccountCreditsTransferResponse | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": {
      "Accounts": [
        {
          "ID": "8ed230eb-0017-4b80-96ea-a0be144da572",
          "CurrentBalance": 2.1,
          "OffPeakBalance": 3.1
        },
        {
          "ID": "8ed230eb-0017-4b80-96ea-a0be144da572",
          "CurrentBalance": 2.1,
          "OffPeakBalance": 3.1
        }
      ],
      "CurrentBalance": 1.1,
      "OffPeakBalance": 2.1
    }
  }
}
        application/xml, text/xml
            Sample:
<ResponseOfAccountCreditsTransferResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Error>
    <ErrorCode>sample string 1</ErrorCode>
    <ErrorReason>sample string 2</ErrorReason>
  </Error>
  <ResponseData>
    <Result>sample string 1</Result>
    <Identification>
      <UserId>sample string 1</UserId>
    </Identification>
    <Detail>
      <Accounts>
        <AccountBalance>
          <ID>8ed230eb-0017-4b80-96ea-a0be144da572</ID>
          <CurrentBalance>2.1</CurrentBalance>
          <OffPeakBalance>3.1</OffPeakBalance>
        </AccountBalance>
        <AccountBalance>
          <ID>8ed230eb-0017-4b80-96ea-a0be144da572</ID>
          <CurrentBalance>2.1</CurrentBalance>
          <OffPeakBalance>3.1</OffPeakBalance>
        </AccountBalance>
      </Accounts>
      <CurrentBalance>1.1</CurrentBalance>
      <OffPeakBalance>2.1</OffPeakBalance>
    </Detail>
  </ResponseData>
</ResponseOfAccountCreditsTransferResponse>