Available Balance

Consult Available Balance

GET https://api.payvalida.com/cashout/v1/operation/available/{merchant}

URL Sandbox: https://api-test.payvalida.com/v1/operation/available/{merchant}

This method gets the current balance available in the Cashout funds

Path Parameters

NameTypeDescription

merchant

string

Commerce/merchant that owns the operation (Max 30 characters)

Query Parameters

NameTypeDescription

checksum

string

Checksum encoded in SHA512(merchant+FIXED_HASH) (512 characters)

{  
   "code":"0000",
   “text”:”OK”,
   "data":{
    	"available": 8017031,
    	"updatedIn": "2020-01-07T08:43:26.875965Z"
    }
}

Response data

code: Code of the result, "0000" indicates success, any other indicates an error

text: Contains the message associated with the code that was sent.

data: Contains the transaction data (for successful results)

  • available: Available amount in the bag

  • updatedIn: Date of the last movement (transaction) of the bag

Last updated