Retrieve all token mints endpoint
- A new endpoint has been added to the NFT-API which allows you to retrieve all token mint requests.
- A new way to filter your tokens based on tokenTypeIdfor the Get All Tokens Endpoint.
- Addition of a timestamp of the creation of mints in the response body for specific endpoints.
Fixed
- 
Filter tokens by tokenTypeId
 A new query param (tokenTypeId) has been added to the Get All Tokens endpoint, which allows you to filter all of your tokens bytokenTypeId.Request Endpoint: reference GET /api/v2/contracts/{secretType}/{contractAddress}/tokensParam Param Type Data Type Required? Description tokenTypeIdQuery Numeric No Filter all the tokens based on the tokenTypeId.
Added
- 
Retrieve all token mints endpoint: 
 A new endpoint has been added, allowing you to retrieve all of your token mint requests and filter the results based on multiple query parameters, such as:- mintIds
- status
- createdOnFrom
- createdOnTo
- sortOn
- sortOrder
 Request Endpoint: reference GET /api/v2/tokens/mints
- 
Timestamps of the creation of mints 
 You will now receive the timestamps of the creation of mints (the time-date when a token mint was created) in the response bodies of the following three endpoints. A new param calledcreatedOnis returned in the response body that indicates the timestamp of the creation of the mint.- Create Token-type (only if you mint tokens in the request): reference
- Mint Tokens: reference
- Check Token Mint Status: reference
 Example response body containing the timestamp information in the createdOnparam:"mints": [ { "id": "1d504bea-23d2-49c2-8a3e-52e7e86960b9", "status": "PENDING", "createdOn": "2024-02-14T08:30:00Z", "destination": { "address": "0x6490d80c70990f27f50fee6189829cefe584998a", "amount": 1 } }, { "id": "80dfeee2-bbfb-489a-acb3-9faaf485cce6", "status": "PENDING", "createdOn": "2024-02-14T08:30:00Z", "destination": { "address": "0x444297d1335cc67130c20EeF0a4E490d18496cC8", "amount": 1 } }, { "id": "6078717c-1506-4db7-872e-16edb5db6096", "status": "PENDING", "createdOn": "2024-02-14T08:30:00Z", "destination": { "address": "0x932d9D7288C6ade9f2f088421269366839d546F8", "amount": 2 } } ]
