- Authorization
- Introduction
- Guides
- Booking Engine
- Toll Integration
- Car Rental
- Comments
- Currencies
- Emails
- Addresses
- Fields
- Blocked Days
- Customer Credits
- Daily Manifest
- Fines
- Packages
- Quotes
- Rate Types
- Rates
- Reservation Attempts
- Extensions
- External Charges
- Adjustments
- Payments
- Refunds
- Reservations
- Updates the status of a reservation to Open
- Updates the status of a reservation to Cancel
- Updates the status of a reservation to Pending
- Updates the status of a reservation to Quote
- Updates the status of a reservation to No Show
- Returns the details and validations required for the dates step
- Validates the dates and return a list of available classes for that period with the respective prices for each vehicle class
- Updates the vehicle class of a reservation (Only Existing Bookings)
- Returns a list of applicable additional charges based on the selection of dates, brand and vehicle class
- Returns the price for the selection of charges and vehicle class
- Creates or updates a customer in the system
- Confirms and create the reservation in the system
- Updates a reservation
- shows a list of reservations
- show rental agreement of specific reservation
- Set date of sign
- Find a specific reservation
- Assign vehicle
- Detach vehicle
- Available Vehicles
- Upload primary driver signature
- Returns the available cars for a given location and reservation date range
- Vehicle Replacements
- Reservation Agents
- Seasons
- Security Deposits
- Webhooks
- Filters
- Preferences
- Contacts
- files
- Fleets
- Payment Gateways
- Shows a list of credit cards for one customer
- Delete payment gateway
- Shows a list of payment methods
- Finds payment method by ID
- Returns payment method button
- Returns payment method form
- Finds payment transaction by UUID
- shows a list of payment transactions
- Create payment transaction
- Refunds a payment transaction
- Shows a list of stripe locations per gateway
- Returns a connection token for a given location
- Returns a connection token for stripe terminal
- Sheets
List all contacts of a specific contact category
GET
/contacts/categories/{category_id}/contacts
Contacts
Request
Path Params
category_id
required
Query Params
page
optional
limit
optional
Header Params
Authorization
string
required
Default:
{{AUTHENTICATION_TOKEN}}
Responses
🟢200OK
application/json
Body
No schema defined
Example
{
"total": 17449,
"per_page": "2",
"current_page": 1,
"last_page": 8725,
"next_page_url": "http://api.caag.server/api/contacts/categories/3/contacts?page=2",
"prev_page_url": null,
"from": 1,
"to": 2,
"data": [
{
"id": 1,
"label": "nadin yamaui",
"entity": "person",
"first_name": "nadin",
"last_name": "yamaui",
"gender": null,
"birthdate": null,
"birthdate_day": 1,
"birthdate_month": 1,
"birthdate_year": null,
"birthplace": null,
"nationality": null,
"address": null,
"address_2": null,
"last_rental": null,
"city": null,
"state": null,
"zip": null,
"county": null,
"country": null,
"email": "nadinyamaui@correo.unimet.edu.ve",
"website": null,
"phone_number": "",
"created_by": 1,
"updated_by": 1,
"deleted_at": null,
"created_at": "2015-11-02 00:49:02",
"updated_at": "2015-11-11 08:44:35",
"driver_license": {
"items": {
"1": {
"type": "national_id",
"id": "",
"number": "",
"expires_on": "",
"file_id": ""
}
}
},
"f64": null,
"phone_alternative": null,
"email_alternative": null,
"street": null,
"street2": null,
"housenumber": null,
"suburb": null,
"identification": null,
"pivot": {
"category_id": 3,
"contact_id": 1,
"deleted_at": null
}
},
{
"id": 2,
"label": "Laura Kapinga",
"entity": "person",
"first_name": "Laura",
"last_name": "Kapinga",
"gender": null,
"birthdate": null,
"birthdate_day": 1,
"birthdate_month": 1,
"birthdate_year": null,
"birthplace": null,
"nationality": null,
"address": null,
"address_2": null,
"last_rental": null,
"city": null,
"state": null,
"zip": null,
"county": null,
"country": null,
"email": null,
"website": null,
"phone_number": null,
"created_by": 121,
"updated_by": 121,
"deleted_at": null,
"created_at": "2015-11-03 11:12:04",
"updated_at": "2015-12-29 10:36:16",
"driver_license": {
"items": {
"1": {
"type": "national_id",
"id": "4",
"number": "321321",
"expires_on": "",
"file_id": ""
}
}
},
"f64": null,
"phone_alternative": null,
"email_alternative": null,
"street": null,
"street2": null,
"housenumber": null,
"suburb": null,
"identification": null,
"pivot": {
"category_id": 3,
"contact_id": 2,
"deleted_at": null
}
}
]
}
🟠410Record Gone
🟠422Parameter Error
🔴500Server Error
Modified at 2025-03-28 15:05:28