action nowpayments_get_update_payment_estimate { label: "Get/Update payment estimate" description: "This endpoint is required to get the current estimate on the payment, and update the current estimate. \nPlease note! Calling this estimate before `expiration_estimate_date` will return the current estimate, it won’t be updated.\n\n`:id` \\- payment ID, for which you want to get the estimate\n\nResponse: \n`id` \\- payment ID \n`token_id` - id of api key used to create this payment (please discard this parameter) \n`pay_amount` - payment estimate, the exact amount the user will have to send to complete the payment \n`expiration_estimate_date` - expiration date of this estimate" provider: nowpayments method: POST path: "/v1/payment/{id}/update-merchant-estimate" encoding: json input: { type: "object" properties: { "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { expiration_estimate_date: { type: "string" } id: { type: "string" } pay_amount: { type: "number" } token_id: { type: "string" } } } }