> 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/bank-card-application-result-query.md).

# Bank Card Application Result Query

### POST Bank Card Application Result Query

POST /api/mastercard/masterCardApplyQuery.html

Bank card application result query

> Request Body

```
```

```json
{
  "holderId": "100085",
  "orderNo": "12345678901",
  "randomStr": "abcdef12345saas67890"
}
```

#### Request Parameters

| Name      | Type   | Required | Base64 Encoding | Field Name    | Description                      |
| --------- | ------ | -------- | --------------- | ------------- | -------------------------------- |
| orderNo   | string | true     | none            | Order number  | Card application order number    |
| holderId  | string | true     | none            | Cardholder ID | Cardholder ID                    |
| randomStr | string | true     | none            | Randomstr     | A random string of 32 characters |

> Example Response
>
> 200 Response

```
```

```json
{
    "applyStatus": 0,
    "errMsg": "string",
    "cardId": "string",
    "cardNo": "string"
}
```

#### Response Fields

| Name        | Type    | Required | Constraints | Description                                  |
| ----------- | ------- | -------- | ----------- | -------------------------------------------- |
| applyStatus | integer | true     | none        | Application status: 1 - Success, 2 - Failure |
| errMsg      | string  | true     | none        | Status description                           |
| cardId      | string  | true     | none        | Card token                                   |
| cardNo      | string  | true     | none        | Card number                                  |
