{
  "id": "astv_9WBBA6TH7n7iX",
  "account_id": "acc_yVf3mkzbhz9tj",
  "type": "credit_card",
  "credit_card": {
    "number": "5555555555551580",
    "exp_month": "09",
    "exp_year": "2030",
    "cvv": "878",
    "billing_zip_code": null,
  },
  "status": "completed",
  "error": null,
  "created_at": "2024-04-26T22:50:24.857Z",
  "updated_at": "2024-04-26T22:50:24.857Z",
}

The Sensitive endpoint returns underlying sensitive Account information (e.g. PAN, CVV, account number). This product is only available for Liabilities.

The Sensitive endpoint is restricted to most teams, and requires PCI compliance to access. Contact your Method CSM for more information.

Sensitive Objects

id
string

Unique identifier for the Sensitive.

account_id
string

The ID of the associated Account.

type
enum

The type of Sensitive.

status
enum

Status of the Sensitive.

error
object | null

An object representing an error that occurred while processing this Sensitive. See Sensitive errors.

created_at
string

Timestamp of when the Sensitive was created.

updated_at
string

Timestamp of when the Sensitive was last updated.

Additional Properties based on type

credit_card
object | null

The credit card sensitive object.

credit_card.number
string | null

The full Account number.

credit_card.exp_month
string | null

The expiration month of the card.

credit_card.exp_year
string | null

The expiration year of the card.

credit_card.cvv
string | null

The cvv of the card.

credit_card.billing_zip_code
string | null

The billing zip code of the card.

Webhook Payload

The Webhook payload will contain the following information:

{
  "id": "string",
  "type": "sensitive.create" | "sensitive.update",
  "path": "/accounts/<acc_id>/sensitive/<astv_id>",
}
{
  "id": "astv_9WBBA6TH7n7iX",
  "account_id": "acc_yVf3mkzbhz9tj",
  "type": "credit_card",
  "credit_card": {
    "number": "5555555555551580",
    "exp_month": "09",
    "exp_year": "2030",
    "cvv": "878",
    "billing_zip_code": null,
  },
  "status": "completed",
  "error": null,
  "created_at": "2024-04-26T22:50:24.857Z",
  "updated_at": "2024-04-26T22:50:24.857Z",
}