Krytex CRM Edge Gateway

Version 1.4.2

Overview

Welcome to the private REST API reference documentation for the Krytex CRM mobile client applications. This API coordinates client synchronization, pipeline updates, and dynamic caching configurations through our edge proxy gateways.

Authentication

All API requests to the gateway must include the standard authorization header with a token obtained from the login endpoint:

Header Type Description
Authorization string Bearer token issued upon successful authentication. Example: Bearer crm_tok_8109...

Core API Endpoints

POST /api/v1/auth/login

Authenticates the client session and issues temporary caching metadata.

// Response Example (200 OK) { "status": "success", "data": { "session_id": "sess_8109d72a91264c", "expires_in": 86400 } }
GET /api/v1/customers

Retrieves the list of active customer records assigned to the current agent.

// Response Example (200 OK) { "total": 2, "records": [ { "id": 101, "name": "Aria Design Group", "status": "active" }, { "id": 102, "name": "Berlin Millworks", "status": "lead" } ] }