Create a Payout

Create a Payout

POST https://workspace.myeshopbox.com/payments/api/v1/payout

Headers

Name
Type
Description

Authorization

string

The Bearer token to grant access to the API

Request Body

Name
Type
Description

portalAccountId

number

channel account id (seller account )

fundTransferDate

string

Date on which payment is received from portal

fundTransferAmount

number

Total amount received from portal

transactionId

string

Unique NEFT ID for the transaction

comments

string

Comments

ledgerGroupId

string

Unique Id which identifies a portal for which payout can be generated

reportUrl

string

URL of report uploaded

{
  "requestId": "1533800205380",
  "requestStatus": "processing",
  "status": "success"
}
curl -X POST https://workspace.myeshopbox.com/payments/api/v1/payout \
-H "Content-Type: application/json" \
-H "Authorization: Bearer XXXX" \
-d $'{
        "fundTransferDate": "2018-09-25 05:30:00",
        "fundTransferAmount": 819901.7199999853,
        "transactionId": "lime3",
        "comments": "Limeroad Testing",
        "ledgerGroupId": "limeroad",
        "portalAccountId":122,
        "reportUrl": "https://cdn.filestackcontent.com/ckdksjkasl676678687as"
    }'

Last updated