My Account

POST <baseURL>/clients/tips

This request adds a tip for the delivery driver.

The client must capture the tip information from their own application.
It needs to validate and process any adjustments to the tip value prior to reporting it to Walmart GoLocal.
The amount can then be used in this request to report it to Walmart GoLocal.

Tips can be added any time from when the order is first placed up through an end time, which is typically 14 days after delivery completion.
Check with your Walmart Client Center administrator for details.

Walmart GoLocal cannot adjust, resubmit, or cancel a tip after being submitted through this request.

Tips must be greater than $0.00 and up to $100.

Walmart GoLocal uses this information for payouts and to calculate eligible discounts for monthly invoicing (as applicable).

Example

This example creates a $6.35 tip for the delivery defined with clientId of 2 and externalOrderId of 2855066270.

POST {baseURL}/clients/tips

Request body:

{ "clientId": "2", "externalOrderId": "10208877499-208925547882099", "tip": { "amount": 10.36, "currency": "USD" }
}

Response body:

There is no response object on a successful tip creation.

See Also

To retrieve tip details for a prior delivery or delivery driver, see POST /clients/tips/{clientId}/externalorder/{externalOrderId}.

Language
URL