# Badge Issue List

## Badge Issue List

<mark style="color:blue;">`GET`</mark> `/api/v1/oauth2/nft/issued_list`

page\_no: current page, defaut 1\
page\_size: default 10\
nft\_name: NFT name, Can be empty\
name: NFT name\
status: 0 for All badges, 1 for Ongoing, 2 for Upcoming, 3 for History

**Query String:** `?page_no=1&page_size=10&name={nft_name}&status={0/1/2/3}`

#### Headers

| Name                                           | Type   | Description  |
| ---------------------------------------------- | ------ | ------------ |
| Access-Token<mark style="color:red;">\*</mark> | String | access token |

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

```javascript
{
  "code": 200,
  "data": {
    "data": [
      {
        // Second timestamp, 0: not limit
        "claim_start_date_ts": 0,
        "contract_address": "0x69B3c4caEE643C461AfE80e98585B3C20Bd006FD",
        "contract_name": "contract_name",
        "desc": "Event Description",
        // Second timestamp, 0: not limit
        "end_date_ts": 1701532800,
        "id": "638f1b12b2a1453f7430dca2",
        "issue_amount": 10,
        "nft_logo": "https://metis.memosync.org:6083/matrix-test/78b3d60a086741e69c839084af5198d1.png",
        "nft_name": "nft_name",
        "nft_url": "https://matrix-nft-cliam.preview.staging.metisdevops.link/views/nft?nid=0x69B3c4caEE643C461AfE80e98585B3C20Bd006FD",
        // Second timestamp, 0: not limit
        "start_date_ts": 0,
        "time_zone": "+08:00",
        "total_level": 2,
        // 1 - Redemption Code, 2 - Unique Link with QR Code, 3 - Wallte address Whitelist
        "whitelist_type": 1
      }
    ],
    "page_no": 1,
    "page_size": 10,
    "total": 1
  },
  "message": "",
  "msg": "",
  "msgTitle": null
}
```

{% endtab %}
{% endtabs %}
