{
    "data": {
        "id": 1,
        "name": "Kohler Group",
        "email": "parisian.kristoffer@yahoo.com",
        "phone": "+12069536978",
        "line_1": "193 Dach Shores Suite 632",
        "line_2": "Apt. 300",
        "city": "Moenburgh",
        "region": "Colorado",
        "post_code": "72099",
        "country": 1,
        "created_at": "2024-12-09 22:49:57",
        "updated_at": "2024-12-09 22:49:57"
    }
}

Overview

This endpoint can be used to get a single address.

Endpoint: /api/v1/addresses/{address_id}

Method: GET

URL Parameters

address_id
integer
required

The ID of the address you wish to .

Response

If the address is successfully retrieved, the API will return a 200 OK status code.

The response will contain the following content:

data
array
required

An array containing a single Address object.

{
    "data": {
        "id": 1,
        "name": "Kohler Group",
        "email": "parisian.kristoffer@yahoo.com",
        "phone": "+12069536978",
        "line_1": "193 Dach Shores Suite 632",
        "line_2": "Apt. 300",
        "city": "Moenburgh",
        "region": "Colorado",
        "post_code": "72099",
        "country": 1,
        "created_at": "2024-12-09 22:49:57",
        "updated_at": "2024-12-09 22:49:57"
    }
}