Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Users
  • Users
  • APIs
    • Basket
      • List items in the basket
      • Add an item to the basket
      • Update an item in the basket
      • Remove an item from the basket
      • Retrieve the basket summary
      • Retrieve the basket information, fees & delivery costs
      • Create a checkout session for the basket
    • Conversations
      • List conversations
      • Create conversation
      • Count unread messages
      • List messages
      • Send a message
    • Search
      • Search using full-text and facets
      • Lookup usernames
      • Retrieve an item by its URN or slug
      • Retrieve multiple items by URN
      • Retrieve a faceted hierarchy of items
      • Retrieve search results for a specific game
      • Retrieve search results for a specific set
      • Retrieve search results for a specific type
    • Sellers
      • Create listing
      • Search listings
      • Get listing
      • Update listing
      • Delete listing
      • Create image upload URL
      • Get delivery configuration
      • Upsert delivery configuration
      • List orders
      • Get order
      • Create seller account
      • Get seller account
      • Get seller status
      • Get dashboard link
      • Get seller balance
      • Withdraw funds
      • List payouts
      • List transfers
    • Seller Listings
      • Search listings
      • Search a seller's listings
      • Search listings for a specific item
      • Retrieve historical prices for an item
    • Users
      • Find/Lookup addresses
        POST
      • Retrieve full address details
        POST
      • Store a new Address
        POST
      • List all Addresses
        GET
      • Delete an Address
        DELETE
      • Get user account information
        GET
      • Update user password
        PUT
      • Update user profile
        PUT
      • Update a users email address by first requesting a verification code
        PATCH
      • Update a user's email address by verifying the received code
        PUT
      • Create payment method
        POST
      • List payment methods
        GET
      • Delete payment method
        DELETE
      • List purchases
        GET
      • Get purchase
        GET
      • List reviews
        GET
      • Create review
        POST
      • Update review
        PUT
      • Delete review
        DELETE
    • Profiles
      • Get user profile
      • List reviews
  1. Users

Store a new Address

POST
/user/addresses
Creates a new address for the user. The address can be either a shipping or billing address.
If the address is primary, all other addresses of the same type will be set to not primary.
The user can have a maximum of 10 addresses. If the user tries to create more than 10 addresses, an error will be returned.
Lookup endpoints are provided to search for addresses. If an address has been located using Loqate,
then pass the LoqateID to this endpoint to store it in the database. If the address has a valid LoqateID,
then isValidated should be set to true.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.managem.co.uk/user/addresses' \
--header 'Content-Type: application/json' \
--data-raw '{
    "label": "home",
    "type": "shipping",
    "line1": "67 Test Close",
    "city": "Petersfield",
    "state": "Hampshire",
    "postalCode": "GU322JX",
    "country": "GB",
    "isValidated": false,
    "isPrimary": true
}'
Response Response Example
{
    "label": "string",
    "type": "shipping",
    "line1": "string",
    "line2": "string",
    "city": "string",
    "state": "string",
    "postalCode": "string",
    "country": "st",
    "loqateId": "string",
    "isValidated": false,
    "isPrimary": false,
    "id": "string",
    "createdAt": "string",
    "updatedAt": "string"
}

Request

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

Examples

Responses

🟢201Created
application/json
Address created
Body

🟠400Bad Request
Previous
Retrieve full address details
Next
List all Addresses
Built with