> For the complete documentation index, see [llms.txt](https://prepaidify.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prepaidify.gitbook.io/docs/physical-card/api-integration/modify-cardholder-information.md).

# Modify Cardholder Information

### POST Modify Cardholder Information

POST /api/mastercard/holderUpdate.html

Modify cardholder information with the following statuses: 0 Pending review, 1 Under review, 2 Approved, 3 Rejected

> Example Request Body

```
```

```json
{
  "address": "Laisvés pr. 60",
  "countryCode": "LT",
  "dateOfBirth": "1994-04-10",
  "holderId": "601081839",
  "nationality": "US",
  "postCode": "05120",
  "randomStr": "abcdef123456s78901",
  "sex": 1,
  "town": "Vilnius"
}
```

#### Request Parameters

| Name        | Type    | Required | Base64 Encoding | Field Name       | Description                               |
| ----------- | ------- | -------- | --------------- | ---------------- | ----------------------------------------- |
| holderId    | string  | true     | none            | Cardholder ID    | The ID of the cardholder                  |
| dateOfBirth | string  | true     | none            | Date of Birth    | Date of birth (yyyy-MM-dd)                |
| nationality | string  | true     | none            | Nationality      | Nationality (2-letter country code)       |
| sex         | integer | true     | none            | Gender           | Gender: 3 for male, 4 for female          |
| countryCode | string  | true     | none            | Country Code     | Country code (2-letter country code)      |
| town        | string  | true     | Y               | European Region  | European region or city name (in English) |
| address     | string  | true     | Y               | European Address | Detailed address in Europe (in English)   |
| postCode    | string  | true     | none            | Postal Code      | Postal code                               |
| randomStr   | string  | true     | none            | Randomstr        | A random string of 32 characters          |

> Example Response
>
> 200 Response

```
```

```json
{
  "auditStatus": 0,
  "errMsg": "string",
  "firstName": "string",
  "holderId": "string",
  "idno": "string",
  "idnoType": 0,
  "lastName": "string",
  "mobile": "string"
}
```

#### Response Fields

| Name        | Type    | Required | Constraints | Description                                                                                              |
| ----------- | ------- | -------- | ----------- | -------------------------------------------------------------------------------------------------------- |
| auditStatus | integer | true     | none        | Audit status: 0 - Pending review, 1 - Under review, 2 - Approved, 3 - Rejected, 4 - Data to be completed |
| errMsg      | string  | true     | none        | Description                                                                                              |
| firstName   | string  | true     | none        | First name                                                                                               |
| holderId    | string  | true     | none        | Cardholder ID                                                                                            |
| idno        | string  | true     | none        | Identification number                                                                                    |
| idnoType    | integer | true     | none        | Identification type                                                                                      |
| lastName    | string  | true     | none        | Last name                                                                                                |
| mobile      | string  | true     | none        | Mobile phone number                                                                                      |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://prepaidify.gitbook.io/docs/physical-card/api-integration/modify-cardholder-information.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
