Developers3 min read
The API and mobile access
Incep CRM exposes a versioned HTTP API, used by the mobile app and available to anything else you want to connect.
The public API
/api-docsThe API is documented in the app itself, from an OpenAPI specification that is generated from the routes rather than written by hand. That means it does not drift from what the API actually does.
Mobile
The CRM mobile app signs in with the same platform account and talks to the same API, so anything you record on a phone is immediately visible on the web.
Getting data in
/dashboard/automation/webhooksFor inbound data, a webhook is usually simpler than the API. See the automation pages for how to set one up.