SalesChannelAddresses

Retrieve Sales Channel Address

get

Retrieve a specific Sales Channel Address by ID

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
200
Sales Channel Address retrieved successfully
application/json
get
GET /api/v1/channel/{channel_id}/addresses/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "pk": 1,
  "email": "[email protected]",
  "phone_number": "text",
  "first_name": "text",
  "last_name": "text",
  "country": 1,
  "city": 1,
  "line": "text",
  "title": "text",
  "township": 1,
  "district": 1,
  "postcode": "text",
  "notes": "text",
  "company_name": "text",
  "tax_office": "text",
  "tax_no": "text",
  "e_bill_taxpayer": true,
  "hash_data": "text",
  "address_type": "customer",
  "retail_store": 1,
  "remote_id": "text",
  "identity_number": "text",
  "extra_field": {},
  "customer": 1,
  "is_active": true,
  "created_date": "2025-06-27T09:27:36.942Z",
  "modified_date": "2025-06-27T09:27:36.942Z"
}

Update Sales Channel Address

put

Update a specific Sales Channel Address by ID

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Body
pkintegerOptional

Primary key of the address

emailstring · emailOptional

Email address of the contact person

phone_numberstringRequired

Phone number of the contact person

first_namestringOptional

First name of the contact person

last_namestringOptional

Last name of the contact person

countryintegerOptional

Related country ID

cityintegerOptional

Related city ID

linestringOptional

Street address line

titlestringOptional

Title of the contact person

townshipintegerOptional

Related township ID

districtintegerOptional

Related district ID

postcodestringOptional

Postal code

notesstringOptional

Additional notes about the address

company_namestringOptional

Company name associated with the address

tax_officestringOptional

Tax office name

tax_nostringOptional

Tax number

e_bill_taxpayerbooleanOptional

Indicates if the address is an e-bill taxpayer

hash_datastringRead-onlyOptional

Hash data for the address

address_typestring · enumOptional

Type of address

Example: customerPossible values:
retail_storeintegerOptional

Related retail store ID

remote_idstringOptional

Remote ID for the address

identity_numberstring | nullableOptional

Identity number of the contact person

extra_fieldobjectOptional

Extra field for additional data

customerintegerOptional

Related customer ID

is_activebooleanOptional

Indicates if the address is active

Responses
200
Sales Channel Address updated
put
PUT /api/v1/channel/{channel_id}/addresses/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 461

{
  "pk": 1,
  "email": "[email protected]",
  "phone_number": "text",
  "first_name": "text",
  "last_name": "text",
  "country": 1,
  "city": 1,
  "line": "text",
  "title": "text",
  "township": 1,
  "district": 1,
  "postcode": "text",
  "notes": "text",
  "company_name": "text",
  "tax_office": "text",
  "tax_no": "text",
  "e_bill_taxpayer": true,
  "address_type": "customer",
  "retail_store": 1,
  "remote_id": "text",
  "identity_number": "text",
  "extra_field": {},
  "customer": 1,
  "is_active": true,
  "modified_date": "2025-06-27T09:27:36.942Z"
}

No content

Delete Sales Channel Address

delete

Delete Sales Channel Address for a specific channel.

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
204
Sales Channel Address deleted successfully
delete
DELETE /api/v1/channel/{channel_id}/addresses/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*

No content

Partial Update Sales Channel Address

patch

Partial update a specific Sales Channel Address by ID

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Body
pkintegerOptional

Primary key of the address

emailstring · emailOptional

Email address of the contact person

phone_numberstringRequired

Phone number of the contact person

first_namestringOptional

First name of the contact person

last_namestringOptional

Last name of the contact person

countryintegerOptional

Related country ID

cityintegerOptional

Related city ID

linestringOptional

Street address line

titlestringOptional

Title of the contact person

townshipintegerOptional

Related township ID

districtintegerOptional

Related district ID

postcodestringOptional

Postal code

notesstringOptional

Additional notes about the address

company_namestringOptional

Company name associated with the address

tax_officestringOptional

Tax office name

tax_nostringOptional

Tax number

e_bill_taxpayerbooleanOptional

Indicates if the address is an e-bill taxpayer

hash_datastringRead-onlyOptional

Hash data for the address

address_typestring · enumOptional

Type of address

Example: customerPossible values:
retail_storeintegerOptional

Related retail store ID

remote_idstringOptional

Remote ID for the address

identity_numberstring | nullableOptional

Identity number of the contact person

extra_fieldobjectOptional

Extra field for additional data

customerintegerOptional

Related customer ID

is_activebooleanOptional

Indicates if the address is active

Responses
200
Sales Channel Address updated
patch
PATCH /api/v1/channel/{channel_id}/addresses/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 461

{
  "pk": 1,
  "email": "[email protected]",
  "phone_number": "text",
  "first_name": "text",
  "last_name": "text",
  "country": 1,
  "city": 1,
  "line": "text",
  "title": "text",
  "township": 1,
  "district": 1,
  "postcode": "text",
  "notes": "text",
  "company_name": "text",
  "tax_office": "text",
  "tax_no": "text",
  "e_bill_taxpayer": true,
  "address_type": "customer",
  "retail_store": 1,
  "remote_id": "text",
  "identity_number": "text",
  "extra_field": {},
  "customer": 1,
  "is_active": true,
  "modified_date": "2025-06-27T09:27:36.942Z"
}

No content

Retrieve Sales Channel Cities with details

get

Retrieve a specific Sales Channel Cities by ID with details

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
200
Sales Channel Address retrieved successfully with details
application/json
get
GET /api/v1/channel/{channel_id}/addresses/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "pk": 1,
  "email": "[email protected]",
  "phone_number": "text",
  "first_name": "text",
  "last_name": "text",
  "country": {
    "id": 1,
    "name": "Türkiye",
    "code": "TR",
    "is_active": true,
    "created_date": "2021-07-07T14:00:00Z",
    "modified_date": "2021-07-07T14:00:00Z",
    "translations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    }
  },
  "city": {
    "id": 1,
    "name": "Istanbul",
    "created_date": "2025-06-27T09:27:36.942Z",
    "modified_date": "2025-06-27T09:27:36.942Z",
    "is_active": true,
    "country": 1,
    "translations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "priority": 1,
    "postcode": "34000"
  },
  "line": "text",
  "title": "text",
  "township": {
    "pk": 1,
    "name": "Esenler",
    "is_active": true,
    "city": 1,
    "translations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "postcode": "34000",
    "created_date": "2025-06-27T09:27:36.942Z",
    "modified_date": "2025-06-27T09:27:36.942Z"
  },
  "district": {
    "pk": 1,
    "name": "Davutpasa",
    "is_active": true,
    "city": 1,
    "township": 1,
    "translations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "postcode": "34000",
    "zipcode": "34000",
    "created_date": "2025-06-27T09:27:36.942Z",
    "modified_date": "2025-06-27T09:27:36.942Z"
  },
  "postcode": "text",
  "notes": "text",
  "company_name": "text",
  "tax_office": "text",
  "tax_no": "text",
  "e_bill_taxpayer": true,
  "hash_data": "text",
  "address_type": "customer",
  "retail_store": {
    "pk": 1,
    "name": "Downtown Flagship Store",
    "township_id": 12,
    "district_id": 3,
    "address": "500 Market St, San Francisco, CA 94103",
    "phone_number": "+1-234-567-890",
    "fax_phone_number": "+1-234-567-890",
    "image": "https://cdn.example.com/stores/1.jpg",
    "store_hours": [
      [
        "09:00",
        "21:00"
      ],
      [
        "09:00",
        "21:00"
      ],
      [
        "09:00",
        "21:00"
      ],
      [
        "09:00",
        "21:00"
      ],
      [
        "09:00",
        "21:00"
      ],
      [
        "10:00",
        "20:00"
      ],
      [
        "12:00",
        "18:00"
      ]
    ],
    "latitude": 41.0202767,
    "longitude": 28.8888964,
    "is_active": true,
    "click_and_collect": true,
    "kapida_enabled": false,
    "fast_delivery": true,
    "store_type_id": 2,
    "config": {
      "auto_assign": true,
      "capacity_limit": 200
    },
    "group_id": 4,
    "related_retail_stores": [
      102,
      103
    ],
    "sort_order": 10,
    "is_return_accepted": true,
    "channels": [
      1,
      2,
      5
    ],
    "mapping": [
      {
        "created_date": "2025-06-27T09:27:36.942Z",
        "modified_date": "2025-06-27T09:27:36.942Z"
      }
    ],
    "translations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "created_date": "2025-06-27T09:27:36.942Z",
    "modified_date": "2025-06-27T09:27:36.942Z",
    "integration": [
      {
        "channel": {
          "id": 1,
          "name": "Commerce Channel",
          "catalog": 1,
          "channel_type": "web",
          "conf": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "category_tree": "text",
          "is_active": true,
          "schema": {},
          "created_date": "2024-11-20T11:22:23.702774Z",
          "modified_date": "2024-11-20T11:22:23.702774Z"
        },
        "content_type": {
          "id": 1,
          "app_label": "text",
          "model": "text"
        },
        "object_id": 1,
        "remote_id": "text",
        "version_date": "2025-06-27T09:27:36.942Z",
        "state": {},
        "local_batch_id": "text",
        "status": "processing",
        "content_object": {}
      }
    ]
  },
  "remote_id": "text",
  "identity_number": "text",
  "extra_field": {},
  "customer": {
    "pk": 123,
    "email": "[email protected]",
    "first_name": "John",
    "last_name": "Doe",
    "phone_number": "+123456789",
    "is_active": true,
    "channel_code": "CH123",
    "erp_code": "ERP456",
    "attributes": {
      "logged_ip": "127.0.0.1",
      "register_client_type": "default"
    },
    "attribute_kwargs": {},
    "localized_attributes": {},
    "localized_attribute_kwargs": {},
    "extra_field": {
      "key1": "value1",
      "key2": 100
    },
    "email_allowed": true,
    "sms_allowed": false,
    "call_allowed": true,
    "date_joined": "2023-01-15T10:30:00Z",
    "gender": "female",
    "user_type": "guest",
    "date_of_birth": "1985-08-25",
    "channel": 5
  },
  "is_active": true,
  "modified_date": "2025-06-27T09:27:36.942Z"
}

List Sales Channel Addresses

get

List Sales Channel Addresses

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Query parameters
pageinteger · min: 1Optional

Specifies the page number of the current dataset

Default: 1
limitinteger · min: 1Optional

Indicates the number of rows on the current page.

Default: 10
pk__ininteger[]Optional

Filter by multiple primary key values (comma-separated list of integers)

emailstring · emailOptional

Email address of the customer

Example: [email protected]
phone_numberstringOptional

Phone number of the customer

Example: +123456789
first_namestringOptional

First name of the customer

Example: John
last_namestringOptional

Last name of the customer

Example: Doe
customer_idintegerOptional

Filter by customer ID.

Example: 123
country_idinteger · min: 1Optional

Filter by County ID

township_idinteger · min: 1Optional

Filter by Township ID

city_idinteger · min: 1Optional

Filter by City ID

district_idinteger · min: 1Optional

Filter by District ID

is_activebooleanOptional

Filter by active status (True or False)

postcodestringOptional

Filter by Postcode

line__exactstringOptional

Filters by exact line

line__iexactstringOptional

Filters case insensitive by exact line

line__containsstringOptional

Filter by line containing the given string

line__icontainsstringOptional

Filter by line case-insensitive containing the given string

title__exactstringOptional

Filters by exact title

title__iexactstringOptional

Filters case insensitive by exact title

title__containsstringOptional

Filter by title containing the given string

title__icontainsstringOptional

Filter by title case-insensitive containing the given string

notes__exactstringOptional

Filters by exact notes

notes__iexactstringOptional

Filters case insensitive by exact notes

notes__containsstringOptional

Filter by notes containing the given string

notes__icontainsstringOptional

Filter by notes case-insensitive containing the given string

company_name__exactstringOptional

Filters by exact company_name

company_name__iexactstringOptional

Filters case insensitive by exact company_name

company_name__containsstringOptional

Filter by company_name containing the given string

company_name__icontainsstringOptional

Filter by company_name case-insensitive containing the given string

tax_office__exactstringOptional

Filters by exact tax_office

tax_office__iexactstringOptional

Filters case insensitive by exact tax_office

tax_office__containsstringOptional

Filter by tax_office containing the given string

tax_office__icontainsstringOptional

Filter by tax_office case-insensitive containing the given string

tax_no__exactstringOptional

Filters by exact tax_no

tax_no__iexactstringOptional

Filters case insensitive by exact tax_no

tax_no__containsstringOptional

Filter by tax_no containing the given string

tax_no__icontainsstringOptional

Filter by tax_no case-insensitive containing the given string

hash_data__exactstringOptional

Filters by exact hash_data

hash_data__iexactstringOptional

Filters case insensitive by exact hash_data

hash_data__containsstringOptional

Filter by hash_data containing the given string

hash_data__icontainsstringOptional

Filter by hash_data case-insensitive containing the given string

e_bill_taxpayerbooleanOptional

Filter by e_bill_taxpayer

city__priorityintegerOptional

Filter by city's priority

Example: 1
city__country_idinteger · min: 1Optional

Filter by City's County ID

city__postcodestringOptional

Filter by City's Postcode

district__city_idinteger · min: 1Optional

Filter by District's City ID

district__township_idinteger · min: 1Optional

Filter by District's Township ID

district__postcodestringOptional

Filter by District's Postcode

township__priorityintegerOptional

Filter by township's priority

Example: 1
township__city_idinteger · min: 1Optional

Filter by Township's City ID

township__postcodestringOptional

Filter by Township's Postcode

retail_store_idinteger · min: 1Optional

Filter by Retail Store ID

mapping__integration_typestring · enumOptional

Filter by integration mapping object's integration type

Possible values:
mapping__code__exactstringOptional

Filter by integration mapping object's code

hyperbooleanOptional

Activate id to hyperlink the response data.

Responses
200
OK
application/json
get
GET /api/v1/channel/{channel_id}/addresses/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 0,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "created_date": "2025-06-27T09:27:36.942Z",
      "modified_date": "2025-06-27T09:27:36.942Z"
    }
  ]
}

Create Sales Channel Address

post

Create Sales Channel Address for a specific channel.

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Body
pkintegerOptional

Primary key of the address

emailstring · emailOptional

Email address of the contact person

phone_numberstringRequired

Phone number of the contact person

first_namestringOptional

First name of the contact person

last_namestringOptional

Last name of the contact person

countryintegerOptional

Related country ID

cityintegerOptional

Related city ID

linestringOptional

Street address line

titlestringOptional

Title of the contact person

townshipintegerOptional

Related township ID

districtintegerOptional

Related district ID

postcodestringOptional

Postal code

notesstringOptional

Additional notes about the address

company_namestringOptional

Company name associated with the address

tax_officestringOptional

Tax office name

tax_nostringOptional

Tax number

e_bill_taxpayerbooleanOptional

Indicates if the address is an e-bill taxpayer

hash_datastringRead-onlyOptional

Hash data for the address

address_typestring · enumOptional

Type of address

Example: customerPossible values:
retail_storeintegerOptional

Related retail store ID

remote_idstringOptional

Remote ID for the address

identity_numberstring | nullableOptional

Identity number of the contact person

extra_fieldobjectOptional

Extra field for additional data

customerintegerOptional

Related customer ID

is_activebooleanOptional

Indicates if the address is active

Responses
201
Address Created
application/json
post
POST /api/v1/channel/{channel_id}/addresses/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 461

{
  "pk": 1,
  "email": "[email protected]",
  "phone_number": "text",
  "first_name": "text",
  "last_name": "text",
  "country": 1,
  "city": 1,
  "line": "text",
  "title": "text",
  "township": 1,
  "district": 1,
  "postcode": "text",
  "notes": "text",
  "company_name": "text",
  "tax_office": "text",
  "tax_no": "text",
  "e_bill_taxpayer": true,
  "address_type": "customer",
  "retail_store": 1,
  "remote_id": "text",
  "identity_number": "text",
  "extra_field": {},
  "customer": 1,
  "is_active": true,
  "modified_date": "2025-06-27T09:27:36.942Z"
}
{
  "pk": 1,
  "email": "[email protected]",
  "phone_number": "text",
  "first_name": "text",
  "last_name": "text",
  "country": 1,
  "city": 1,
  "line": "text",
  "title": "text",
  "township": 1,
  "district": 1,
  "postcode": "text",
  "notes": "text",
  "company_name": "text",
  "tax_office": "text",
  "tax_no": "text",
  "e_bill_taxpayer": true,
  "hash_data": "text",
  "address_type": "customer",
  "retail_store": 1,
  "remote_id": "text",
  "identity_number": "text",
  "extra_field": {},
  "customer": 1,
  "is_active": true,
  "created_date": "2025-06-27T09:27:36.942Z",
  "modified_date": "2025-06-27T09:27:36.942Z"
}

List Sales Channel Addresses with details

get

List Sales Channel Addresses with details

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Query parameters
pageinteger · min: 1Optional

Specifies the page number of the current dataset

Default: 1
limitinteger · min: 1Optional

Indicates the number of rows on the current page.

Default: 10
pk__ininteger[]Optional

Filter by multiple primary key values (comma-separated list of integers)

emailstring · emailOptional

Email address of the customer

Example: [email protected]
phone_numberstringOptional

Phone number of the customer

Example: +123456789
first_namestringOptional

First name of the customer

Example: John
last_namestringOptional

Last name of the customer

Example: Doe
customer_idintegerOptional

Filter by customer ID.

Example: 123
country_idinteger · min: 1Optional

Filter by County ID

township_idinteger · min: 1Optional

Filter by Township ID

city_idinteger · min: 1Optional

Filter by City ID

district_idinteger · min: 1Optional

Filter by District ID

is_activebooleanOptional

Filter by active status (True or False)

postcodestringOptional

Filter by Postcode

line__exactstringOptional

Filters by exact line

line__iexactstringOptional

Filters case insensitive by exact line

line__containsstringOptional

Filter by line containing the given string

line__icontainsstringOptional

Filter by line case-insensitive containing the given string

title__exactstringOptional

Filters by exact title

title__iexactstringOptional

Filters case insensitive by exact title

title__containsstringOptional

Filter by title containing the given string

title__icontainsstringOptional

Filter by title case-insensitive containing the given string

notes__exactstringOptional

Filters by exact notes

notes__iexactstringOptional

Filters case insensitive by exact notes

notes__containsstringOptional

Filter by notes containing the given string

notes__icontainsstringOptional

Filter by notes case-insensitive containing the given string

company_name__exactstringOptional

Filters by exact company_name

company_name__iexactstringOptional

Filters case insensitive by exact company_name

company_name__containsstringOptional

Filter by company_name containing the given string

company_name__icontainsstringOptional

Filter by company_name case-insensitive containing the given string

tax_office__exactstringOptional

Filters by exact tax_office

tax_office__iexactstringOptional

Filters case insensitive by exact tax_office

tax_office__containsstringOptional

Filter by tax_office containing the given string

tax_office__icontainsstringOptional

Filter by tax_office case-insensitive containing the given string

tax_no__exactstringOptional

Filters by exact tax_no

tax_no__iexactstringOptional

Filters case insensitive by exact tax_no

tax_no__containsstringOptional

Filter by tax_no containing the given string

tax_no__icontainsstringOptional

Filter by tax_no case-insensitive containing the given string

hash_data__exactstringOptional

Filters by exact hash_data

hash_data__iexactstringOptional

Filters case insensitive by exact hash_data

hash_data__containsstringOptional

Filter by hash_data containing the given string

hash_data__icontainsstringOptional

Filter by hash_data case-insensitive containing the given string

e_bill_taxpayerbooleanOptional

Filter by e_bill_taxpayer

city__priorityintegerOptional

Filter by city's priority

Example: 1
city__country_idinteger · min: 1Optional

Filter by City's County ID

city__postcodestringOptional

Filter by City's Postcode

district__city_idinteger · min: 1Optional

Filter by District's City ID

district__township_idinteger · min: 1Optional

Filter by District's Township ID

district__postcodestringOptional

Filter by District's Postcode

township__priorityintegerOptional

Filter by township's priority

Example: 1
township__city_idinteger · min: 1Optional

Filter by Township's City ID

township__postcodestringOptional

Filter by Township's Postcode

retail_store_idinteger · min: 1Optional

Filter by Retail Store ID

mapping__integration_typestring · enumOptional

Filter by integration mapping object's integration type

Possible values:
mapping__code__exactstringOptional

Filter by integration mapping object's code

hyperbooleanOptional

Activate id to hyperlink the response data.

Responses
200
OK
application/json
get
GET /api/v1/channel/{channel_id}/addresses/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 0,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "pk": 1,
      "email": "[email protected]",
      "phone_number": "text",
      "first_name": "text",
      "last_name": "text",
      "country": {
        "id": 1,
        "name": "Türkiye",
        "code": "TR",
        "is_active": true,
        "created_date": "2021-07-07T14:00:00Z",
        "modified_date": "2021-07-07T14:00:00Z",
        "translations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "city": {
        "id": 1,
        "name": "Istanbul",
        "created_date": "2025-06-27T09:27:36.942Z",
        "modified_date": "2025-06-27T09:27:36.942Z",
        "is_active": true,
        "country": 1,
        "translations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "priority": 1,
        "postcode": "34000"
      },
      "line": "text",
      "title": "text",
      "township": {
        "pk": 1,
        "name": "Esenler",
        "is_active": true,
        "city": 1,
        "translations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "postcode": "34000",
        "created_date": "2025-06-27T09:27:36.942Z",
        "modified_date": "2025-06-27T09:27:36.942Z"
      },
      "district": {
        "pk": 1,
        "name": "Davutpasa",
        "is_active": true,
        "city": 1,
        "township": 1,
        "translations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "postcode": "34000",
        "zipcode": "34000",
        "created_date": "2025-06-27T09:27:36.942Z",
        "modified_date": "2025-06-27T09:27:36.942Z"
      },
      "postcode": "text",
      "notes": "text",
      "company_name": "text",
      "tax_office": "text",
      "tax_no": "text",
      "e_bill_taxpayer": true,
      "hash_data": "text",
      "address_type": "customer",
      "retail_store": {
        "pk": 1,
        "name": "Downtown Flagship Store",
        "township_id": 12,
        "district_id": 3,
        "address": "500 Market St, San Francisco, CA 94103",
        "phone_number": "+1-234-567-890",
        "fax_phone_number": "+1-234-567-890",
        "image": "https://cdn.example.com/stores/1.jpg",
        "store_hours": [
          [
            "09:00",
            "21:00"
          ],
          [
            "09:00",
            "21:00"
          ],
          [
            "09:00",
            "21:00"
          ],
          [
            "09:00",
            "21:00"
          ],
          [
            "09:00",
            "21:00"
          ],
          [
            "10:00",
            "20:00"
          ],
          [
            "12:00",
            "18:00"
          ]
        ],
        "latitude": 41.0202767,
        "longitude": 28.8888964,
        "is_active": true,
        "click_and_collect": true,
        "kapida_enabled": false,
        "fast_delivery": true,
        "store_type_id": 2,
        "config": {
          "auto_assign": true,
          "capacity_limit": 200
        },
        "group_id": 4,
        "related_retail_stores": [
          102,
          103
        ],
        "sort_order": 10,
        "is_return_accepted": true,
        "channels": [
          1,
          2,
          5
        ],
        "mapping": [
          {
            "created_date": "2025-06-27T09:27:36.942Z",
            "modified_date": "2025-06-27T09:27:36.942Z"
          }
        ],
        "translations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "created_date": "2025-06-27T09:27:36.942Z",
        "modified_date": "2025-06-27T09:27:36.942Z",
        "integration": [
          {
            "channel": {
              "id": 1,
              "name": "Commerce Channel",
              "catalog": 1,
              "channel_type": "web",
              "conf": {
                "ANY_ADDITIONAL_PROPERTY": "text"
              },
              "category_tree": "text",
              "is_active": true,
              "schema": {},
              "created_date": "2024-11-20T11:22:23.702774Z",
              "modified_date": "2024-11-20T11:22:23.702774Z"
            },
            "content_type": {
              "id": 1,
              "app_label": "text",
              "model": "text"
            },
            "object_id": 1,
            "remote_id": "text",
            "version_date": "2025-06-27T09:27:36.942Z",
            "state": {},
            "local_batch_id": "text",
            "status": "processing",
            "content_object": {}
          }
        ]
      },
      "remote_id": "text",
      "identity_number": "text",
      "extra_field": {},
      "customer": {
        "pk": 123,
        "email": "[email protected]",
        "first_name": "John",
        "last_name": "Doe",
        "phone_number": "+123456789",
        "is_active": true,
        "channel_code": "CH123",
        "erp_code": "ERP456",
        "attributes": {
          "logged_ip": "127.0.0.1",
          "register_client_type": "default"
        },
        "attribute_kwargs": {},
        "localized_attributes": {},
        "localized_attribute_kwargs": {},
        "extra_field": {
          "key1": "value1",
          "key2": 100
        },
        "email_allowed": true,
        "sms_allowed": false,
        "call_allowed": true,
        "date_joined": "2023-01-15T10:30:00Z",
        "gender": "female",
        "user_type": "guest",
        "date_of_birth": "1985-08-25",
        "channel": 5
      },
      "is_active": true,
      "modified_date": "2025-06-27T09:27:36.942Z"
    }
  ]
}

Was this helpful?