curl https://production.methodfi.com/ping \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
await method.ping();
method.ping()
{
"success": true,
"data": null,
"message": "pong"
}
Health Check
Perform a Health Check
GET
/
ping
curl https://production.methodfi.com/ping \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
await method.ping();
method.ping()
{
"success": true,
"data": null,
"message": "pong"
}
A health check may be performed by calling the
/ping endpoint.
curl https://production.methodfi.com/ping \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
await method.ping();
method.ping()
{
"success": true,
"data": null,
"message": "pong"
}
⌘I