GET/v1/connect
Connect
On this page we will discuss the connect API call and how you can use it to validate that your authentication is working during development, or as a health check when you need to test your connection to our API.
Making a Request
Include the headers in your request.
GET
/v1/connectcurl -G https://api.mpodx.com/v1/connect \
-H "Authorization: Bearer {token}"
Test the connection
This endpoint allows you to test your authentication, and can be used a health check when needed to validate your connection to our API.
Request URL
"https://api.mpodx.com/v1/connect"
200 - Success Response
{
"message": "Successful connection",
"status": "success",
"data": null
}
401 - Error Response
{
"message": "Unauthorized",
"status": "error",
"data": null
}