Use this endpoint to retrieve the list of published versions for a specific pricing framework. It helps you understand the framework’s publication history and gives you the exact frameworkVersionId values you can use to run version-pinned queries.
What you get back
A list of published versions for the framework. Each record includes the framework version ID and its key details.
Enter an access token to authenticate your requests. For details, read Get an access token.
Framework identifier.
Published versions of a framework response
{
"data": {
"versions": [
{
"frameworkVersionId": "22222222-2222",
"frameworkId": "11111111-1111",
"PublishedAt": "2025-01-01"
}
]
},
"meta": {
"requestId": "req-123"
}
}A list of published versions of a framework.
A published framework version and its key details like a unique ID and publication date.
Results pagination details.
Cursor for pagination.
True if more records are available.
Request identifier for tracing.
Unauthorized
{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"requestId": "req-123"
}
}Forbidden
{
"error": {
"code": "FORBIDDEN",
"message": "Forbidden",
"requestId": "req-123"
}
}Queried element not found
{
"error": {
"code": "NOT_FOUND",
"message": "Not found",
"requestId": "req-123"
}
}Internal error
{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal error",
"requestId": "req-123"
}
}Upstream error
{
"error": {
"code": "UPSTREAM_ERROR",
"message": "Upstream dependency failed",
"requestId": "req-123"
}
}