Skip to main content

Customers API

The Customers API allows you to manage customers, including creating, retrieving, updating, and deleting customer records.

Available Endpoints


Base URL

All customer endpoints use the base URL:

https://app.getmanageit.io/api/customers

Authentication

All requests require Bearer token authentication:

Authorization: Bearer YOUR_API_KEY

Common Response Fields

Most customer responses include these common fields:

FieldTypeDescription
idintegerUnique identifier for the customer
namestringCustomer's first name
last_namestringCustomer's last name
emailstringCustomer's email address
phonestringCustomer's phone number
created_atdatetimeWhen the customer was created
updated_atdatetimeWhen the customer was last updated

Error Handling

The API uses standard HTTP status codes to indicate success or failure:

CodeDescription
200Success
201Created
400Bad Request
401Unauthorized
404Not Found
422Validation Error
500Server Error

Quick Start

  1. Get your API key from the dashboard
  2. Make authenticated requests to the customer endpoints
  3. Use the detailed endpoint documentation for specific request/response formats

For detailed information about each endpoint, please refer to the individual endpoint documentation linked above.