Get product mappings
Return the current mapping set between external packages and RevKeen products. Ordered by external package ID; includes the RevKeen product the package maps to (nullable when unmapped) and an optional price override.
Related endpoints
POST /integrations/{provider}/activate— Activate integrationPOST /integrations/{provider}/deactivate— Deactivate integrationGET /integrations/{provider}— Get integration statusPOST /integrations/{provider}/test— Test integration credentialsPOST /integrations/{provider}/sync— Trigger manual syncGET /integrations— List all integrationsPUT /integrations/{provider}/status— Update integration statusPUT /integrations/{provider}/sync-toggle— Toggle integration sync
Common errors
404 resource_missing— the referenced resource does not exist or is not visible to your key.
Pagination
Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.
x-api-key<token>
Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.
In: header
Path Parameters
provider*string
Legacy configurable integration provider (practicehub, wodify, terminal).
Value in
"practicehub" | "wodify" | "terminal"Response Body
application/json
application/json
Stuck on an error response? Ask the RevKeen assistant to explain it.
curl "https://api.revkeen.com/v2/integrations/practicehub/product-mappings" \
-H "x-api-key: $REVKEEN_API_KEY"{
"success": true,
"data": [
{
"external_id": "string",
"external_name": "string",
"internal_id": "string",
"ignored": true,
"product_name": "string",
"product_kind": "string",
"product_amount_minor": 0,
"product_currency": "string",
"metadata": null
}
]
}{
"error": "Not found"
}