Before making a request
- Choose the correct identity and credential in API Authentication.
- Use a source key only for the external lead-ingestion routes.
- Select direct HTTP or a generated Leadping SDK.
- Implement status-code handling and rate-limit backoff.
- Test with controlled data before enabling production traffic.
Read an endpoint page
Check the HTTP method, path, credential requirements, required fields, and documented success response together. A route’s presence in the reference does not mean every credential can call it. Paths containing/me or /my use the applicable authenticated context; those names are not values to replace.
Some read operations use POST because their query includes a JSON body. For example, POST /leads/all/my lists leads, while POST /leads creates one. Determine retry safety from the operation’s behavior, not just its method.
Page through a collection
For a list operation that acceptsRequestDataOptions, start without a cursor:
continuationToken into the same query. Keep filters and sorting unchanged while following a cursor. Stop when the response has no continuation token; do not infer completion from a short page or calculate a cursor yourself.
Separate acceptance from completion
Lead intake, exports, scheduled messages, and automation runs may have later work to complete. Save the returned identifier and read the resource’s status. A lead’s processing status, an automation’s run status, and a message’s delivery status describe different operations. For errors, inspect the HTTP status and anyapplication/problem+json body. Use the status to select an action and the detail to diagnose the specific request; avoid matching the exact wording of a human-readable error in application logic.
Integration resources
Developer overview
Select an integration path and credential.
Leadping SDKs
Use typed clients for TypeScript, Python, .NET, Go, PHP, or Java.
Rate limits
Handle throttling and production retry behavior.
Automation webhooks
Configure automation requests and understand receiver authentication limitations.

