# Bank Card Unloss

### POST Bank Card Unloss

POST /api/mastercard/masterCardUnLoss.html

Cancel the loss report for a bank card.

> Request Body

```
```

```json
{
  "cardId": "card123",
  "cardNo": "**** **** **** 1234",
  "randomStr": "abcdef1234567890"
}
```

#### Request Parameters

| Name      | Type   | Required | Base64 Encoded | Description                                        |
| --------- | ------ | -------- | -------------- | -------------------------------------------------- |
| cardId    | string | false    | none           | Either cardId or cardNo must be filled in at least |
| cardNo    | string | false    | none           | Either cardId or cardNo must be filled in at least |
| randomStr | string | true     | none           | 32-digit random string                             |

> Example Response
>
> 200 Response

```
```

```json
{
    "changeStatus": 0,
    "errMsg": "string"
}
```

#### Response Fields

| Name         | Type    | Required | Constraint | Description            |
| ------------ | ------- | -------- | ---------- | ---------------------- |
| changeStatus | integer | true     | none       | 1: Success, 2: Failure |
| errMsg       | string  | true     | none       | none                   |
