Skip to main content
POST
/
bridge
/
vault_connection
/
revoke
Revoke TEFCA synthetic patient connections
curl --request POST \
  --url https://api.connect.fastenhealth.com/v1/bridge/vault_connection/revoke \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "dogbeaker@aol.com"
}
'
{
  "success": true,
  "data": {
    "request_id": "f5d19ee8-6d53-4d17-b7f8-368d1fa41506",
    "revoked": [
      "vault_conn_12345"
    ]
  }
}

Authorizations

Authorization
string
header
required

Basic Authentication, containing API Public Id and Private Key generated from the Fasten Connect Portal. Do not expose these keys in the browser.

Body

application/json

Identify the synthetic patient and the vault connections that should be revoked.

email
string<email>
required

Email address for one of the synthetic TEFCA IAS test patients listed in the TEFCA IAS Developer Guide.

Example:

"dogbeaker@aol.com"

Response

200 - application/json

Revoke operation completed.

success
boolean
Example:

true

data
object