How to use Partenero's API

Partenero's API allows integrating any application with modules like Clients, Activities, Playbooks, Success Plans, Notes, and others.

The full API documentation is available here.

Integration example: retrieving Clients from Partenero

This example uses a simple Python code snippet to retrieve a list of Clients from Partenero's API.

You can test this code in an online Python editor such as this.

import requests
response = requests.get("
https://api.partenero.com/v1/clients",headers={"api-key":"714a0d34-c74a-46b6-b734-ga1b2sfc3b1g"})
print(response.json())

Thi API Key is available at Partenero's Profile page.

Partenero's API Key

Partenero's API Key