Fullers
  1. Addresses
Fullers
  • Customer
    • Auth
      • Login
      • Register
      • Resend OTP
      • Validate OTP
      • Validate OTP Forgot Password
      • Forget Password
      • Reset Password
    • Profile
      • Get Profile
      • Update Profile
      • Upload Avatar Only
      • Change Password
      • Delete Account
    • Payment Methods
      • All
      • Store
      • Confirm Setup Intent
      • Delete
    • Addresses
      • All
        GET
      • Store
        POST
      • Update
        POST
      • Delete
        DELETE
    • Deals
      • Get All Active Deals
      • Get Deal Details
      • Get Featured Deals
      • Get Expiring Soon Deals
      • Check Deal Availability
      • GET Get Deal Purchase Details
    • Coupons
      • Available Coupons
      • Validate Coupon
      • Get Coupon by Code
      • Get My Used Coupons
      • Get Recommended Coupons
    • Restaurants
      • Get Nearby Restaurants
      • Get Restaurant Details
      • Get Restaurant Categories
      • Get Category with Products
      • Get Complete Restaurant Menu
      • Get Products with Restaurant Filter
      • Get Product Details
      • Search Products in Restaurant
      • Get Restaurant Deals
      • Restaurant Search
    • Orders
      • Orders List
      • Create Order
      • Validate Order
      • Get Order Details
      • Cancel Order
      • Confirm Payment
      • Track Order
      • Reorder Previous Order
    • Wishlist
      • Get Wishlist
      • Add to Wishlist
      • Toggle Wishlist Item
      • Remove from Wishlist
      • Remove from Wishlist (by Item)
      • Check Wishlist Status
      • Clear Wishlist
    • Ratings
      • Submit Rating
      • Get Ratings LIst
      • Get Single Rating
      • Get Restaurant Ratings
      • Order Can Be Rated
    • Ads Banners
      • Get Active Banners
      • Get Single Banner
      • Ads Banner Rotation
    • Categories
      • Ads Banner Rotation
    • Payments
      • Create Payment
      • Ads Banner Rotation Copy
      • Ads Banner Rotation Copy
    • Pages
      • Pages Listing
      • Pages by Slug
      • Page by ID
  • Restaurant User
    • Auth
      • Get Restaurants List
      • Register Restaurant User
      • Login
      • Resend OTP
      • Validate OTP
      • Logout
      • Delete Account
      • Forget Password
      • Reset Password
    • Profile
      • Get Profile
      • Update Profile
      • Change Password
      • Upload Avatar
    • Orders
      • Get Orders
      • Get Today's Orders
      • Get Order Statistics
      • Get Order Details
      • Get Order History
      • Ratings
      • Confirm/Accept Order
      • Reject Order
      • Update Order Status
      • Active Orders
    • Stock Manaement
      • List Stock
      • Get stock statistics
      • Get product details
      • Update availability
      • Bulk Update availability
      • List Categories
    • Settings
      • Get Restaurant Setting
      • Update Restaurant Settings
  • Driver
    • Auth
      • Driver Registration
      • Login
      • Resend OTP
      • Validate OTP
      • Logout
      • Delete Account
      • Forget Password
      • Reset Password
    • Profile
      • Get Profile
      • Update Profile
      • Update Driver Documents
      • Status Change
      • Change Password
      • Change Password Copy
    • Driver Status Management
      • Update Driver Status (Online/Offline)
      • Available Deliveries
      • Accept Delivery
      • Get Current Active Delivery
      • Delivery Status
  1. Addresses

Store

POST
/v1/customer/addresses

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params multipart/form-data

Responses

🟠422Validation Error
application/json
Body

🟢200Success
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://fullers.flamesware.com/api/v1/customer/addresses' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'label="Home"' \
--form 'first_name="Syed Azlan"' \
--form 'last_name="Ali"' \
--form 'phone="+923112507247"' \
--form 'address="11/2 Block 1E Nazimabad"' \
--form 'city="Karachi"' \
--form 'state="Sindh"' \
--form 'zip="74600"' \
--form 'country="Pakistan"' \
--form 'lat="40.7614"' \
--form 'lng="-73.9776"'
Response Response Example
422 - Validation Error
{
    "message": "The label field is required. (and 8 more errors)",
    "errors": {
        "label": [
            "The label field is required."
        ],
        "first_name": [
            "The first name field is required."
        ],
        "last_name": [
            "The last name field is required."
        ],
        "phone": [
            "The phone field is required."
        ],
        "address": [
            "The address field is required."
        ],
        "city": [
            "The city field is required."
        ],
        "state": [
            "The state field is required."
        ],
        "zip": [
            "The zip field is required."
        ],
        "country": [
            "The country field is required."
        ]
    }
}
Modified at 2025-09-17 10:07:25
Previous
All
Next
Update
Built with