Verify API connection
Verify the API connection by using the Ping endpoint
Ping (Endpoint)
Sends an empty request to the API to check if there is a working connection.
Supported API
- Payments API
- Payment Links API
Usage:
-
Create a Client for the selected API.
-
Call the
Ping()
method.await api.Ping.V1.Ping();
Returns
Response message Pong
.
Example Usage
var response = await api.Ping.V1.Ping();
Response
200 OK
pong
Updated 3 months ago