Velo Payments APIs
  1. Login
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
      GET
    • V1 Get Fundings for Payor
      GET
    • V1 Get Payout Statistics
      GET
    • V3 Get List of Payments
      GET
    • V3 Get Payment
      GET
    • V3 Get Payouts for Payor
      GET
    • V3 Get Payments for Payout
      GET
    • V3 Export Transactions
      GET
  • 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
    • List Payee Changes
    • Delete Payee by Id
    • Get Payee by Id
    • Update Payee Details
    • Update Payee Remote Id
    • List Payees
    • List Payee Changes
    • Delete Payee by Id
    • Get Payee by Id
    • Update Payee Details
    • Update Payee Remote Id
  • 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. Login

validate

Velo Payments Sandbox for testing
https://api.sandbox.velopayments.com/
Velo Payments Sandbox for testing
https://api.sandbox.velopayments.com/
POST
/v1/validate
The second part of login involves validating using an MFA device
An access token with PRE_AUTH authorities is required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.sandbox.velopayments.com//v1/validate' \
--header 'Content-Type: application/json' \
--data-raw '{
    "otp": "123456"
}'
Response Response Example
200 - Example 1
{
    "access_token": "9b58410b-e1b7-4f90-bebb-7e09c5427020",
    "entityIds": [
        "ed89eaa0-4450-4916-a4ff-62a328d60bd6"
    ],
    "expires_in": 1800,
    "refresh_token": "c3d0f771-0997-4814-84e3-09690208545a",
    "scope": "https://api.velopayments.com/scopes/auth/users",
    "token_type": "bearer",
    "user_info": {
        "mfa_details": {
            "mfa_type": "TOTP",
            "verified": true
        },
        "userType": "PAYOR",
        "user_id": "39976ee5-dc4c-4b21-a966-a04fa71ef9e1"
    }
}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200User request has been validated
application/json
Body

🟠401Invalid access token. May be expired or invalid
🟠403The authentication does not have permissions to access the resource This usually occurs when there is a valid authentication instance (client or user) but they do not have the required permissions
Modified at 2022-09-11 21:50:18
Previous
Reset password
Next
Get Funding Audit Delta
Built with