Partner Banking Docs
HomeStatus
  • Introduction
  • Getting Started
    • Partner Onboarding
    • Security
    • Authentication
    • Payload Signing
    • API Hosts
  • Concepts
    • API Connectivity Test
    • Accounts
      • Primary Accounts
      • Virtual Accounts
      • Getting Accounts
      • Balances Explained
    • Payments
      • Payment Simulation
      • Inbound Payments
      • Internal Payments
      • Counterparty Validation
      • Outbound Payments
      • Payment Details
        • Payment Details with ID
        • Payment Details with External Reference
    • Transactions
      • Activity Feed
    • Webhooks
      • Webhook Guidelines
      • Supported Events
      • Testing Webhooks
  • Full Specification
  • Return Home
Powered by GitBook
On this page

Was this helpful?

  1. Concepts

API Connectivity Test

This API calls helps you to confirm if all the required authentication and signing works as expected.

PreviousConceptsNextAccounts

Last updated 5 months ago

Was this helpful?

post
Header parameters
authorizationstringOptional

Authorization header containing your API Token

x-alg-noncestringOptional

Nonce used to generate the payload signature

x-alg-signaturestringOptional

Payload signature

datestringOptional

Date of the request un UTC/GMT

Body
messagestring ยท max: 50OptionalExample: Hello!
Responses
200
Returns message
application/json
Responsestring
post
POST /v1/partner/test HTTP/1.1
Host: api-url
Content-Type: application/json
Accept: */*
Content-Length: 20

{
  "message": "Hello!"
}
200

Returns message

text