Send the Minted Certificate Directly to User
Path: v1/hts/api/integration/transfer-certificate-to-wallet
How to use
If the user has already registered with DgVerse, then you can directly send to the user wallet. 
Parameter List
| Field | Type | Required | Use |
|---|---|---|---|
certificateId | String | Required | This refers to the unique identifier for the certificates. The certificateId allows you to uniquely identify and manage individual certificates. |
targetWalletAddress | String | Required | Wallet address of the recipient |
cURL command
curl --request POST \
--url http://<dgverse-api-base-url>/v1/hts/api/integration/transfer-certificate-to-wallet \
--header 'Authorization: Bearer <YOUR_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{ "certificateId": "<VALUE>", "targetWalletAddress": "<VALUE>"}'
Response
When the certificate claiming message is sent successfully a “200 OK” status is shown. 
Error troubleshooting
- 400 Bad Request: No such certificate found; please create a certificate to start.
- 400 Bad Request: The collection containing the provided certificate is already associated with the account.
