Skip to content
API DocsDocs

Postman Collection

Import the Exirom API into Postman for quick testing

2 min readUpdated Mar 24, 2026

Postman Collection

A ready-to-use Postman collection with all Exirom API endpoints, pre-configured headers, and example request bodies.

#Download

Download Exirom API Collection

Save the file and import it into Postman via File > Import.

#What's Included

FolderEndpoints
AuthenticationPOST /api/v1/auth
Card PaymentsPOST /api/v1/payments/card, GET .../info/{id}, GET .../status/{id}, POST .../tokenize, POST .../charge, POST .../recurring
Card PayoutsPOST /api/v1/payouts/card, GET .../info/{id}, GET .../status/{id}
Card RefundsPOST /api/v1/refunds/card, GET .../info/{id}, GET .../status/{id}
APM PaymentsPOST /api/v1/payments/apm, GET .../info/{id}, GET .../status/{id}
APM PayoutsPOST /api/v1/payouts/apm, GET .../info/{id}, GET .../status/{id}
Payment IntentsPOST /api/v1/payments/intent

#Setup

#1. Import the Collection

  1. Open Postman
  2. Click Import (top-left)
  3. Drag the downloaded JSON file or browse to select it
  4. The collection appears in your sidebar with all folders and endpoints

#2. Configure Variables

The collection uses two variables:

VariableDefaultDescription
base_urlhttps://sandbox.api.exirom.com/apiAPI base URL. Change to production URL when ready.
auth_token(empty)Your bearer token. Auto-populated after calling the auth endpoint.

To edit: click the collection name > Variables tab.

#3. Authenticate

  1. Open Authentication > Authenticate request
  2. Replace merchantKey and merchantSecret in the body with your sandbox credentials
  3. Click Send
  4. The auth_token variable is automatically set from the response — all other requests will use it

#4. Start Testing

All endpoints are pre-configured with:

  • Correct HTTP method and URL
  • Content-Type: application/json header
  • Authorization: Bearer {{auth_token}} header
  • Example request bodies with realistic test values

Edit the request body as needed and click Send.

#Regenerating

The collection is generated from the OpenAPI spec. To regenerate after API changes:

npm run generate:postman

This reads openapi.json and outputs public/exirom-api.postman_collection.json.

#See Also

Was this helpful?