Update a wallet entity
Applies a partial PII update. Omitted fields are left unchanged. Set
resubmit_for_verification to true after material identity changes so a
new check runs. Closed wallet entities reject updates.
Authentication & Headers
| Header | Type | Requirement | Description |
|---|---|---|---|
| Authorization | string | REQUIRED | API key passed as an HTTP Bearer token: Bearer rk_live_... |
| X-Program-ID | UUID | PROGRAM-SCOPED | Program boundary UUID that scopes the issuing card, wallet, or transfer. |
| Content-Type | string | REQUIRED | Must be application/json. |
| Idempotency-Key | string | OPTIONAL | Unique UUID to prevent duplicate execution of financial creations or mutations. |
Path Parameters
| Parameter | Type | Requirement | Description |
|---|---|---|---|
| wallet_entity_id | string | REQUIRED | Unique identifier of the wallet entity. |
Request Body Schema
application/jsonGiven name. Valid on `PERSON` wallet entities.
Family name. Valid on `PERSON` wallet entities.
Date of birth, `YYYY-MM-DD`. Valid on `PERSON` wallet entities.
Last four digits of the US Social Security Number.
Government-issued identification. Send `number` on create and update. Reads return `last4` and never the full number.
Registered legal name. Valid on `BUSINESS` wallet entities.
Legal form of a business wallet entity, used for KYB.
SOLE_PROPRIETORSHIPGENERAL_PARTNERSHIPLIMITED_PARTNERSHIPLLCCORPORATIONPROFESSIONAL_ASSOCIATIONTRUSTGOVERNMENTNON_PROFITOTHERDoing-business-as name. Send null to clear. Valid on `BUSINESS` wallet entities.
US Employer Identification Number. Write-only. Valid on `BUSINESS` wallet entities.
Individual with significant managerial control of a business wallet entity. Send `ssn_last4` and/or `government_id` on write. Reads return `ssn_last4` and `government_id.last4`, never a full government number.
Primary email address.
Primary phone number in E.164.
Postal address. `country` is an ISO 3166-1 alpha-2 code. For US addresses, `state` is the two-letter subdivision and `postal_code` is the ZIP or ZIP+4.
Integrator-assigned identifier. Send null to clear.
When true, the updated identity data is submitted for a new verification check. Omit or send false to store the change without starting a check.
Response Codes & Schemas
{
"id": "2e9c4b71-8a5d-4f03-b6e2-1c7d9a0f3e58",
"object": "wallet_entity",
"type": "PERSON",
"status": "PENDING",
"first_name": "Jane",
"last_name": "Doe",
"date_of_birth": "1990-04-12",
"ssn_last4": "1234",
"email": "jane.doe@example.com",
"phone": "+15125550100",
"address": {
"line_1": "200 West 2nd St",
"line_2": null,
"city": "Austin",
"state": "TX",
"postal_code": "78701",
"country": "US"
},
"verification": {
"status": "IN_REVIEW",
"submitted_at": "2026-08-27T15:10:00Z",
"completed_at": null,
"failure_reasons": []
},
"external_id": "holder_jane_doe_001",
"program_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"created_at": "2026-08-12T10:15:00Z",
"updated_at": "2026-08-27T15:10:00Z"
}{
"error": {
"type": "invalid_request_error",
"code": "invalid_request",
"message": "invalid order by: foo. Valid options are: [created_at updated_at]",
"param": "order_by",
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/invalid_request"
}
}{
"error": {
"type": "authentication_error",
"code": "authentication_error",
"message": "A valid API key is required.",
"param": null,
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/authentication_error"
}
}{
"error": {
"type": "permission_error",
"code": "permission_denied",
"message": "The API key cannot access this program.",
"param": "X-Program-ID",
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/permission_denied"
}
}{
"error": {
"type": "not_found_error",
"code": "not_found",
"message": "No card found for the given id.",
"param": "card_id",
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/not_found"
}
}{
"error": {
"type": "conflict_error",
"code": "conflict",
"message": "The card cannot be reissued from its current state.",
"param": null,
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/conflict"
}
}{
"error": {
"type": "invalid_request_error",
"code": "insufficient_funds",
"message": "The source financial account does not have enough available balance.",
"param": "amount",
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/insufficient_funds"
}
}{
"error": {
"type": "rate_limit_error",
"code": "rate_limited",
"message": "Rate limit exceeded. Retry after the number of seconds in Retry-After.",
"param": null,
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/rate_limited"
}
}{
"error": {
"type": "api_error",
"code": "internal_error",
"message": "An unexpected error occurred. Retry with the same Idempotency-Key.",
"param": null,
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"doc_url": "https://docs.rookpayments.com/errors/internal_error"
}
}