Velo Payments APIs
  1. Payees
Velo Payments APIs
  • Login
    • Authentication endpoint
      POST
    • Logout
      POST
    • Reset password
      POST
    • validate
      POST
  • Funding Manager
    • Get Funding Audit Delta
      GET
    • Get Funding Accounts
      GET
    • Get Funding Account
      GET
    • Get list of source accounts
      GET
    • Get details about given source account.
      GET
    • Create Funding Request
      POST
    • Set notifications
      POST
    • Get Funding Accounts
      GET
    • Get Funding Account
      GET
    • Get list of source accounts
      GET
    • Get details about given source account.
      GET
    • Create Funding Request
      POST
    • Transfer Funds between source accounts
      POST
    • Get list of source accounts
      GET
    • Get details about given source account.
      GET
    • Create Funding Request
      POST
    • Transfer Funds between source accounts
      POST
  • Payment Audit Service (Deprecated)
    • V1 List Payment Changes
    • V1 Get Fundings for Payor
    • V1 Get Payout Statistics
    • V3 Get List of Payments
    • V3 Get Payment
    • V3 Get Payouts for Payor
    • V3 Get Payments for Payout
    • V3 Export Transactions
  • Countries
    • List Payment Channel Country Rules
    • List Supported Countries
    • List Supported Countries
  • Payout Service
    • Withdraw a Payment
    • Submit Payout
    • Withdraw Payout
    • Get Payout Summary
    • Instruct Payout
    • Retrieve payments for a payout
    • Create a quote for the payout
  • Payors
    • List Payor Links
    • Get Payor
    • Create Application
    • Create API Key
    • Get Branding
    • Add Logo
    • Reminder Email Opt-Out
    • Get Payor
  • Payors Private
    • Create a Payor Link
  • Webhooks
    • List the details about the webhooks for the given payor.
    • Create Webhook
    • Get details about the given webhook.
    • Update Webhook
    • /v1/webhooks/{webhookId}/ping
  • Currencies
    • List Supported Currencies
  • Funding Manager Private
    • Create Funding Account
    • Delete a source account by ID
  • Users
    • List Users
    • Invite a User
    • Register SMS Number
    • Get Self
    • Unregister MFA for Self
    • Update Password for self
    • Validate the proposed password
    • Update User Details for self
    • Delete a User
    • Get User
    • Disable a User
    • Enable a User
    • Unregister MFA for the user
    • Update User Role
    • Unlock a User
    • Update User Details
  • Tokens
    • Resend a token
  • Payees
    • List Payees
      GET
    • List Payee Changes
      GET
    • Delete Payee by Id
      DELETE
    • Get Payee by Id
      GET
    • Update Payee Details
      POST
    • Update Payee Remote Id
      POST
    • List Payees
      GET
    • List Payee Changes
      GET
    • Delete Payee by Id
      DELETE
    • Get Payee by Id
      GET
    • Update Payee Details
      POST
    • Update Payee Remote Id
      POST
  • Payee Invitation
    • Initiate Payee Creation
    • Query Batch Status
    • Get Payee Invitation Status
    • Resend Payee Invite
    • Initiate Payee Creation
    • Query Batch Status
    • Get Payee Invitation Status
    • Resend Payee Invite
  • Payment Audit Service
    • Get Fundings for Payor
    • Get List of Payments
    • Get Payment
    • Get Payout Statistics
    • Get Payouts for Payor
    • Get Payments for Payout
    • Export Transactions
    • List Payment Changes
  1. Payees

List Payee Changes

Velo Payments Sandbox for testing
https://api.sandbox.velopayments.com/
Velo Payments Sandbox for testing
https://api.sandbox.velopayments.com/
GET
/v4/payees/deltas
Get a paginated response listing payee changes (updated since a particular time) to a limited set of fields:
dbaName
displayName
email
onboardedStatus
payeeCountry
payeeId
remoteId
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sandbox.velopayments.com//v4/payees/deltas?payorId=&updatedSince='
Response Response Example
200 - Example 1
{
    "content": [
        {
            "dbaName": "Payee DBA Name",
            "displayName": "Payee1",
            "email": "payee1@example.com",
            "payeeCountry": "US",
            "payeeId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
            "remoteId": "payee_1"
        },
        {
            "dbaName": "Payee DBA Name",
            "displayName": "Payee1",
            "email": "payee1@example.com",
            "payeeCountry": "US",
            "payeeId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
            "remoteId": "payee_1"
        }
    ],
    "links": [
        {
            "href": "http://api.sandbox.velopayments.com/v4/payees/deltas?payorId=0a818933-087d-47f2-ad83-2f986ed087eb&updatedSince=2019-01-20T09:00:00+00:00&page=1&pageSize=1000",
            "rel": "first"
        },
        {
            "href": "http://api.sandbox.velopayments.com/v4/payees/deltas?payorId=0a818933-087d-47f2-ad83-2f986ed087eb&updatedSince=2019-01-20T09:00:00+00:00&page=1&pageSize=1000",
            "rel": "first"
        }
    ],
    "page": {
        "numberOfElements": 2,
        "page": 1,
        "pageSize": 25,
        "totalElements": 2,
        "totalPages": 1
    }
}

Request

Query Params

Responses

🟢200Details of Payee Changes
application/json
Body

🟠400Bad Request
Modified at 2022-09-11 21:50:18
Previous
List Payees
Next
Delete Payee by Id
Built with