Check Key Subscription Status

POST /v1/connector/key/check
{
  "domain": "localhost",
  "publicKey": "0xe195...7ce8",
}
Response
{
  "data": {
    "domain": "localhost",
    "providedKey": { //or null
      "key": "0xe195...7ce8",
      "account": "123...",
      "connected": true,
      "preferences": ["general", "security", "transactional"]
    },
    "account": {
      "_id": "123..",
      "name": "Localhost",
      "status": "active",
      "type": "provider",
      "logo": "https://localhost/logo.png",
      ...
    },
  }
}

Last updated