Get Payments List
The API retrieves payment details and summarizes and fetches comprehensive information about all payments associated with the organization account with optional filters. Results are paginated, with a default list limit of 50 results.
GET
/payments/payments
Body Parameters - Request
id
Url parameter
array
string
Payment request id's
description
Url parameter
string
Description substring
request_until
Url parameter
string
date-time
Request End Date
request_from
Url parameter
string
date-time
Request Start Date
funding_until
Url parameter
string
date-time
Funding End Date
funding_from
Url parameter
string
date-time
Funding Start Date
execution_until
Url parameter
string
date-time
Execution End Date
execution_from
Url parameter
string
date-time
Execution Start Date
amount_type
Url parameter
AmountTypeEnum
SEND, LAND
Amount type LAND/SEND
approved
Url parameter
boolean
return only payment requests that are approved (true) or not approved (false), don't send to return both
final
Url parameter
boolean
return only payment requests that are final (true) or not final (false), don't send to return both
has_issues
Url parameter
boolean
return only payment requests that have issues (true) or have no issues (false), don't send to return both
purpose
Url parameter
array
string:/^[A-Z]{4}$/
source
Url parameter
string
Return payment requests only from specific group
filters.status
Url parameter
array
string
Return only payment requests with specific status's
tag
Url parameter
array
tag:name={value}
A list of tags and their values to filter by
?tag:department=sales&tag:department=marketing
target
Url parameter
string
target method
skip
Url parameter
integer
take
Url parameter
integer
Body Parameters - Response
items
array
object
items[]
object
items[].type
string
payment
entity type (payment)
items[].id
string
The unique id of the payment
items[].description
string
The remittence info to send as part of the payment
items[].amount
object
Specifies the amount of the payment
items[].amount.type
string
LAND, SEND
Does the amount refer to the amount credited (LAND), or the amount debited (SEND)
items[].amount.amount
number
The amount (up to 3 decimal points)
items[].amount.currency
string
/^[A-Z]{3}$/
If the amount currency is different than the sender (for SEND) or target (for LAND), specify the 3 letter ISO currency code of the payment
items[].approved
boolean
Has this payment been approved and ready for execution
items[].execution
object
specifies info for the executing date
items[].execution.type
string
SEND, LAND
Does the date refer to the date the funds should arrive (LAND) or the date the funds should be sent (SEND), defaults to amount.type (future support)
items[].execution.date
string
date-time
The date this payment should be sent on (for SEND payments) or the date this payment should arrive by (for LAND payments)
items[].execution.margin
integer
number of hours before execution date, this payment may be sent if funds exist
items[].final
object
Properties describing the finalization of this payment details
items[].final.is_final
boolean
is the amount final
items[].final.expected
string
date-time
If the amount is not final yet, when is the final amount expected
items[].purpose
string
/^[A-Z]{4}$/
items[].source
PaymentRequestMethodEntity
source method
items[].source.type
string
the type of the entity
items[].source.id
string
the id of the entity
items[].target
object
target.type
string
the type of the entity
items[].target.id
string
items[].attachments
array
object
List of files to attach to the payment
items[].attachments[]
object
items[].attachments[].id
string
a unique id to give the attachment
items[].attachments[].title
string
A title to give the attachment
items[].attachments[].url
string
a url link to the attachment
items[].user_tags
object
A set of key/value pairs to tag the payment with
items[].info
object
Extra info on the payment and its execution
items[].info.status
PaymentRequestStatusEnum
PENDING, COMPLETED, FAILED, PROCESSING, PARTIAL, CANCELLED, PROCESSED
The current payment status
items[].info.credit
object
If the payment has been processed, holds the amount credited
items[].info.credit.currency
string
/^[A-Z]{3}$/
the 3 letter ISO currency code this payment will be credited in
items[].info.credit.amount
number
The amount credited
items[].info.funding
object
If the payment has not been processed yet, holds information about the funding requirments
items[].info.funding.currency
string
/^[A-Z]{3}$/
the 3 letter ISO currency code this amount is to be funded in
items[].info.funding.amount
number
The amount required to fund
items[].info.funding.date
string
date-time
The date the funding amount must arrive in the wallet by for this payment to execute on time
items[].info.debit
object
The amount to be debited to wallet
items[].info.debit.currency
string
/^[A-Z]{3}$/
the 3 letter ISO currency code this payment will be debited in
items[].info.debit.amount
number
The amount debited
items[].info.rate
number
FX rate applied to this payment (when cross currency)
items[].info.fees
number
Total amount (in debiting currency) of the debited amount collected as a transactional fee
paging
Paging
paging.skip
integer
paging.take
integer
Request Example
Response Examples
Last updated