Skip to main content
POST
/
orders
/
resend-confirmation
Send Order Confirmation Email
curl --request POST \
  --url https://api.nuwebgroup.com/v1/orders/resend-confirmation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "orderId": 1
}'
{
  "message": "Unauthenticated."
}

Authorizations

Authorization
string
header
required

The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.

Body

application/json

Request body for providing details of the orders for which confirmation emails should be sent.

orderId
integer

The order ID for which the email will be generated from. Basket IDs and Order IDs can be used interchangeably.

Response

Successfully sent the order confirmation.