Documentation for the Pave External API
- Get a Merit Cycle by ID
List Merit Cycles
Get Exchange Rates for a Merit Cycle
Get a Merit Cycle by ID
Pave External API (1.0)
Download OpenAPI description
Languages
Servers
Pave Production Server
https://api.pave.com
- Pave Production Serverhttps://api.pave.com/v1/compensationPlanning/meritCycles
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.pave.com/v1/compensationPlanning/meritCycles?status=active>=2025-01-15>e=2025-01-15<=2025-01-15<e=2025-01-15&limit=25&nextCursor=eyJleHRlcm5hbF9pZCI6Im1jZV8wNDdiZTg0ZC02OGQxLTRiMzYtYmU0Mi0xY2RlMTE4MjdhZTkifQ%3D%3D' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … } ] }
- Pave Production Serverhttps://api.pave.com/v1/compensationPlanning/meritCycles/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.pave.com/v1/compensationPlanning/meritCycles/{id}' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "id": "mc_12345678-1234-5678-9012-123456789012", "name": "H1 Merit Cycle", "startDate": "2025-01-01T00:00:00.000Z", "endDate": "2025-01-31T00:00:00.000Z", "createdDate": "2024-06-17T18:55:43.000Z", "status": "active" }
- Pave Production Serverhttps://api.pave.com/v1/compensationPlanning/meritCycles/{id}/exchangeRates
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.pave.com/v1/compensationPlanning/meritCycles/{id}/exchangeRates' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "base": "USD", "rates": { "EUR": 0.92, "GBP": 0.79, "JPY": 149.5 } }