メインコンテンツへスキップ
DELETE
/
connected-accounts
/
accounts
/
{id}
TypeScript
import { MyAccountClient } from "github.com/auth0/myaccount-js";

async function main() {
    const client = new MyAccountClient({
        token: "<token>",
    });
    await client.connectedAccounts.delete("id");
}
main();
{
  "type": "<string>",
  "status": 123,
  "title": "<string>",
  "detail": "<string>",
  "validation_errors": [
    {
      "detail": "<string>",
      "field": "<string>",
      "pointer": "<string>",
      "source": "<string>"
    }
  ]
}

承認

Authorization
string
header
必須

Bearer and DPoP tokens are supported depending on the API configuration

パスパラメータ

id
string
必須

The unique identifier of the connected account The unique identifier for a connected account

Pattern: ^cac_[A-Za-z0-9]+$

レスポンス

Connected account successfully deleted