GET: Transfer Status
Returns the status of a transfer.
https://api.hypermint.com/v1/nft-contract/:contractId/transfer/:transferId
Get Transfer Status
Returns the status of the given transfer
Parameters
Header
Parameter | Description |
---|---|
HM_ACCESS_KEY | HyperMint Access Key |
HM_ACCESS_KEY_SECRET | HyperMint Access Key Secret |
Response
Code | Meaning |
---|---|
🟢 200: OK | Returns status of the transfer |
🟠 404: Not Found | Not Found |
interface TransferStatusResponse {
id: string;
status: NetworkInteractionStatus;
statusReason?: string;
address: string;
sentAt?: Date;
createdAt: Date;
updatedAt: Date;
transactionHash?: string;
tokenId: number;
amount?: number;
}
enum NetworkInteractionStatus {
Pending = 'Pending',
Sent = 'Sent',
Complete = 'Complete',
Failed = 'Failed'
}
Feedback
Something not quite right, unclear or can't find what you are looking for? Please let us know at support.moonpay.com and we will get back to you as soon as we can.
Updated 8 months ago