Quickstart
Get your first API call working in under 10 minutes.
Create a Pcampus account
Sign up at console.pcampus.co (opens in a new tab). You'll need an organization — create one during onboarding or from Settings → Organizations.
Register an application
In the Console, go to Applications → New Application. Give it a name and choose your application type. This generates an OAuth client ID and lets you create API keys.
Get credentials
From your application's detail page, either:
- Generate an M2M API Key for server-to-server calls (
Authorization: Bearer pip_…) - Copy your OAuth Client ID + Secret for authorization code / client credentials flows
Make your first API call
curl https://pip.pcampus.co/identity/me \
-H "Authorization: Bearer pip_YOUR_API_KEY"Continue reading for details on each step.