Skip to content

Update a user's credit_card_validation

Deprecated
PUT
/api/v4/user/{user_id}/credit_card_validation

Deprecated in 17.7

user_id
required
string

The ID or username of the user

Media type application/json
object
credit_card_validated_at
required

The time when the user’s credit card was validated

string format: date-time
nullable
credit_card_expiration_month
required

The month the credit card expires

integer
nullable
credit_card_expiration_year
required

The year the credit card expires

integer
nullable
credit_card_holder_name
required

The credit card holder name

string
nullable
credit_card_mask_number
required

The last 4 digits of credit card number

string
nullable
credit_card_type
required

The credit card network name

string
nullable
zuora_payment_method_xid

The Zuora payment method ID

string
nullable
stripe_setup_intent_xid

The Stripe setup intent ID

string
nullable
stripe_payment_method_xid

The Stripe payment method ID

string
nullable
stripe_card_fingerprint

The Stripe credit card fingerprint

string
nullable
Example generated
{
"credit_card_validated_at": "2026-04-15T12:00:00Z",
"credit_card_expiration_month": 1,
"credit_card_expiration_year": 1,
"credit_card_holder_name": "example",
"credit_card_mask_number": "example",
"credit_card_type": "example",
"zuora_payment_method_xid": "example",
"stripe_setup_intent_xid": "example",
"stripe_payment_method_xid": "example",
"stripe_card_fingerprint": "example"
}

OK

Media type application/json
object
user_id
string
credit_card_validated_at
string
Example generated
{
"user_id": "example",
"credit_card_validated_at": "example"
}

Bad Request

Not Found