Get Started with Paytrim API

1Authentication Setup

First, you'll need to set up authentication to access the Paytrim API:

  1. Contact Paytrim to receive your API credentials
  2. Get your client ID and client secret
  3. Generate an access token using these credentials
View Authentication Guide

2Make Your First API Call

Start by testing in our sandbox environment:

Sandbox Environment

curl -X GET 'https://api.paytrim.com/Sandbox/onboarding/pricelists' \
-H 'Authorization: Bearer your-sandbox-token' \
-H 'Content-Type: application/json'

Use these company IDs for testing in sandbox:

Production Environment

curl -X GET 'https://api.paytrim.com/onboarding/pricelists' \
-H 'Authorization: Bearer your-production-token' \
-H 'Content-Type: application/json'
Important:
  • Always test thoroughly in sandbox before moving to production
  • Include your access token in the Authorization header
  • Different tokens are required for sandbox and production

3Explore Available Endpoints

Paytrim API offers several endpoints for different operations:

View API Documentation

Need Help?

If you need assistance, contact our support team or refer to our detailed documentation:

API Documentation