メインコンテンツへスキップ
DELETE /api/v1/forward/identities/{identity_id} Identity を削除済みとしてマークすることで削除します。過去のセッション、イベント、監査レコードはカスケード削除されません。

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

Path parameters

ParameterTypeRequiredDescription
identity_idstringYesForward Identity ID。

Example request

curl -s -X DELETE 'https://api.qoder.com/api/v1/forward/identities/idn_019eabc123' \
  -H "Authorization: Bearer $QODER_PAT"

Example response

HTTP 200 OK
{
  "id": "idn_019eabc123",
  "deleted": true
}

Response fields

FieldTypeDescription
idstring削除された Identity ID。
deletedbooleanIdentity が削除済みとしてマークされたかどうか。

Errors

HTTPTypeTrigger
401authentication_errorPAT が無効または期限切れです。
404not_found_errorIdentity が存在しないか、呼び出し元に表示されません。
409conflict_errorIdentity は現在の状態では削除できません。

Notes

  • 削除されたアイデンティティを使用して新しいセッションを作成することはできません。
  • 削除は現在ソフト削除として実装されています。

アイデンティティ一覧を取得する

アイデンティティを作成する