Check connection status

POST /v1/connection/

To track user connections to your application you can use this endpoint.

Body Required

  • type string Required

    Type of connection (e.g., "cognito")

  • id string Required

    Identifier for the connection (e.g., Cognito ID)

Responses

  • 200

    Successful Connection

    Hide response attributes Show response attributes object
    • type string Required

      Type of connection (e.g., "cognito")

    • id string Required

      Identifier for the connection (e.g., Cognito ID)

POST /v1/connection/
curl \
 -X POST https://api.infura.ai/v1/connection/ \
 -H "x-api-key: $API_KEY" \
 -d '{"type":"string","id":"string"}'
Request example
{
  "type": "string",
  "id": "string"
}
Response examples (200)
{
  "type": "string",
  "id": "string"
}