# Query Default Card Limit

### **Request** URI <a href="#payin-by-creditcard" id="payin-by-creditcard"></a>

`POST` `/issuing/card/query-default-limit`

### **Request Body**

**Refer to :** [**common**](https://docs.pagsmile.com/issuing-card-api/common)

**Biz\_data :**

| Name                                          | Type   | Description |
| --------------------------------------------- | ------ | ----------- |
| partner\_id<mark style="color:red;">\*</mark> | string | Partner ID  |

### **Request** Example <a href="#example" id="example"></a>

```
{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "request_id": "5A1685DD-cfB1-dCc4-63fb-d75bbAd4",
    "timestamp": "2025-04-07 13:56:44",
    "format": "JSON",
    "version": "2.0",
    "random_key": "<generated_key>",
    "sign_type": "RSA",
    "biz_data": {
        "sub_partner_id": 1715679487057813
    }
}
// The biz_data in this example needs to be encrypted!
```

### Response <a href="#example" id="example"></a>

| Name                                                  | Type    | Description                |
| ----------------------------------------------------- | ------- | -------------------------- |
| daily\_transactions<mark style="color:red;">\*</mark> | integer | Daily Transactions Quality |
| single\_amount<mark style="color:red;">\*</mark>      | string  | Single Amount              |
| daily\_amount<mark style="color:red;">\*</mark>       | string  | Daily Amount               |
| monthly\_amount<mark style="color:red;">\*</mark>     | string  | Monthly Amount             |

{% tabs %}
{% tab title="200:OK" %}

```
{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": {
        "daily_transactions": 1000000,
        "single_amount": "2000000.00",
        "daily_amount": "3000000.00",
        "monthly_amount": "4000000.00"
    }
}
// The data in this example has already been decrypted.
```

{% endtab %}

{% tab title="400: invalid-signature" %}

```
{
    "code": "40002",
    "msg": "Business Failed",
    "sub_code": "invalid-signature",
    "sub_msg": "invalid signature"
}
```

{% endtab %}
{% endtabs %}
