API Documentation

Developer Resources

Build powerful integrations with the InterlinkCRM API

Quick Start

# Authenticate with your API key
curl -X GET "https://api.interlinkcrm.com/v1/contacts" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"

Contacts API

Create, read, update, and delete contacts in your CRM.

GET /v1/contacts
POST /v1/contacts
PUT /v1/contacts/{id}
DELETE /v1/contacts/{id}

Deals API

Manage deals and track your sales pipeline programmatically.

GET /v1/deals
POST /v1/deals
PUT /v1/deals/{id}
DELETE /v1/deals/{id}

Tasks API

Create and manage tasks for your team members.

GET /v1/tasks
POST /v1/tasks
PUT /v1/tasks/{id}
DELETE /v1/tasks/{id}

Webhooks

Receive real-time notifications when events occur in your CRM.

GET /v1/webhooks
POST /v1/webhooks
DELETE /v1/webhooks/{id}

Authentication

All API requests require authentication using an API key. You can generate API keys in your account settings.

# Include your API key in the Authorization header
Authorization: Bearer YOUR_API_KEY