Contacts
Authorizations
AuthorizationstringRequired
Laravel Sanctum token authentication.
Include the token in the Authorization header: Bearer {your-token}
Query parameters
pageinteger · min: 1OptionalDefault:
Page number for pagination
1limitinteger · min: 1OptionalDefault:
Number of items per page
10is_warehousebooleanOptionalExample:
Filter by warehouse status
falseResponses
200
List of contacts
application/json
401
Authentication required
application/json
get
/v3/contactsAuthorizations
AuthorizationstringRequired
Laravel Sanctum token authentication.
Include the token in the Authorization header: Bearer {your-token}
Body
first_namestring | nullableOptionalExample:
First name
Johnfamily_namestring | nullableOptionalExample:
Family name
Doephonestring | nullableOptionalExample:
Phone number
+36123456789country_idinteger | nullableOptionalExample:
Country ID
1zipstring | nullableOptionalExample:
Postal code
1051citystring | nullableOptionalExample:
City
Budapestaddressstring | nullableOptionalExample:
Address
Váci utca 1Responses
201
Contact created successfully
application/json
401
Authentication required
application/json
422
Validation failed
application/json
post
/v3/contactsAuthorizations
AuthorizationstringRequired
Laravel Sanctum token authentication.
Include the token in the Authorization header: Bearer {your-token}
Path parameters
idintegerRequiredExample:
Contact ID
1Responses
200
Contact details
application/json
401
Authentication required
application/json
403
Access forbidden
application/json
404
Resource not found
application/json
get
/v3/contacts/{id}Last updated