PATCH: Update Contract Dates
Sets the sale dates on the contract for buying on network.
Changes to deployed contracts will be broadcasted immediately
https://api.hypermint.com/v1/nft-contract/:contractId/update-dates
Update Contract Dates
Parameters
Header
Parameter | Description |
---|---|
HM_ACCESS_KEY | HyperMint Access Key |
HM_ACCESS_KEY_SECRET | HyperMint Access Key Secret |
Body
Parameter | Type | Required | Description |
---|---|---|---|
publicSaleAt | Date | Y | Date format is YYYY-MM-DDTHH:mm:ss.sssZ . Not setting a date will disable checks on the contract when buying. publicSaleAt as undefined allows buying at any time before the close date |
saleCloseAt | Date | Y | Date format is YYYY-MM-DDTHH:mm:ss.sssZ . Not setting a date will disable checks on the contract when buying. saleClosesAt as undefined allows buying indefinitely |
Response
Code | Meaning |
---|---|
🟢 200: OK | If the contract has been deployed, an interactionId will be returned which allows you to check the status of the request. |
🟠 404: Not Found | Contract does not exist or you don't have permission |
🟠 400: Bad Request | The contract has been disabled by an administrator |
interface ContractInteractionResponse {
interactionId?: string;
}
See GET Interaction for a list of interaction types which are used and how to check the status if needed.
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