Contacts

Contact management operations

List contacts

get

Retrieve a paginated list of contacts

Authorizations
AuthorizationstringRequired

Laravel Sanctum token authentication. Include the token in the Authorization header: Bearer {your-token}

Query parameters
pageinteger · min: 1Optional

Page number for pagination

Default: 1
limitinteger · min: 1Optional

Number of items per page

Default: 10
is_warehousebooleanOptional

Filter by warehouse status

Example: false
Responses
get
/v3/contacts

Create a new contact

post

Create a new contact

Authorizations
AuthorizationstringRequired

Laravel Sanctum token authentication. Include the token in the Authorization header: Bearer {your-token}

Body
first_namestring | nullableOptional

First name

Example: John
family_namestring | nullableOptional

Family name

Example: Doe
emailstring · email | nullableOptional

Email address

Example: [email protected]
phonestring | nullableOptional

Phone number

Example: +36123456789
country_idinteger | nullableOptional

Country ID

Example: 1
zipstring | nullableOptional

Postal code

Example: 1051
citystring | nullableOptional

City

Example: Budapest
addressstring | nullableOptional

Address

Example: Váci utca 1
Responses
chevron-right
201

Contact created successfully

application/json
post
/v3/contacts

Get contact details

get

Retrieve detailed information about a specific contact

Authorizations
AuthorizationstringRequired

Laravel Sanctum token authentication. Include the token in the Authorization header: Bearer {your-token}

Path parameters
idintegerRequired

Contact ID

Example: 1
Responses
get
/v3/contacts/{id}

Last updated