Billing
Prerequisites
Add billing information
Request
curl -D- -X POST <base_url>/api/v1/carts/<cartId>/billing-address \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
-H 'Content-Type: application/json' \
-d '{
"city": "<City>",
"firstName": "<firstName>",
"lastName": "<lastName>",
"postalCode": "<postalCode>",
"line1": "<addressLine1>",
"line2": "<addressLine2>",
"countryId": "<countryId>",
"email":"<email>",
"state":"<state>",
"mobileNumber":"<mobileNumber>",
"attention":"<attention>",
"companyName":"<companyName>"
}'Response
Error Handling
Error
Description
Related Articles
Error HandlingLast updated