Add New Address Developing
Run in Apidog
Request Body Params application/json
{
"label" : "Home" ,
"addressLine1" : "12 Jogunosimi Street Alausa" ,
"city" : "Ikeja" ,
"state" : "Lagos" ,
"postalCode" : "100212" ,
"country" : "Nigeria" ,
"latitude" : 6.605874 ,
"longitude" : 3.349149 ,
"isDefault" : true
}
Request samples curl --location --request POST '/deliveryAddress/' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI0OWVjNTliNi1jNjU0LTRlMjUtOTJmZi02Y2E4MGIwNzIzMTMiLCJyb2xlIjoiY3VzdG9tZXIiLCJpYXQiOjE3NTA3NjExMzEsImV4cCI6MTc1MzM1MzEzMX0.udK1x3Al0iymWcqxeXEl37m1oykaOkEzYSy6y_8Bvu4' \
--header 'Content-Type: application/json' \
--data-raw '{
"label": "Home",
"addressLine1": "12 Jogunosimi Street Alausa",
"city": "Ikeja",
"state": "Lagos",
"postalCode": "100212",
"country": "Nigeria",
"latitude": 6.605874,
"longitude": 3.349149,
"isDefault": true
}'
Responses application/json Generate Code
{
"id" : "string" ,
"userId" : "string" ,
"label" : "string" ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"city" : "string" ,
"state" : "string" ,
"postalCode" : "string" ,
"country" : "string" ,
"latitude" : 0 ,
"longitude" : 0 ,
"isDefault" : true ,
"createdAt" : "string" ,
"updatedAt" : "string"
}
Modified at 2025-06-24 14:00:11