Skip to main content
{
  "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.
credit_card
A credit card Sensitive object.mortgage
A mortgage Sensitive object.auto_loan
An auto loan Sensitive object.personal_loan
A personal loan Sensitive object.collection
A collection Sensitive object.student_loans
A student loan Sensitive object.credit_builder
A credit builder Sensitive object.bnpl
A buy now, pay later Sensitive object.fintech
A fintech Sensitive object.loan
A loan Sensitive object.
status
enum
Status of the Sensitive.
completed
The Sensitive request successfully completed.failed
The Sensitive request failed to complete. See error field.
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
  • Auto Loan
  • Mortgage
  • Personal Loan
  • Collection
  • Student Loans
  • Credit Builder
  • BNPL
  • Fintech
  • Loan
credit_card
object | null
The credit card sensitive object.

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",
}
I