List recent rate-card changes
GET
/api/v1/admin/rate-card/history
const url = 'https://api.aetherplatform.cloud/api/v1/admin/rate-card/history';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.aetherplatform.cloud/api/v1/admin/rate-card/history \ --header 'Authorization: Bearer <token>'Returns recent rate_cards rows newest-first (the effective-dated price history). Requires the platform-admin realm role.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Recent rate-card rows, newest-first.
Media typeapplication/json
object
history
required
Array<object>
object
resource_type
required
string
unit_price_eur
required
number format: double
effective_from
required
string format: date-time
created_by
required
string
created_at
required
string format: date-time
Example
{ "history": [ { "resource_type": "control_plane" } ]}Missing or invalid credentials.
Media typeapplication/json
object
error
required
object
code
required
A stable, machine-readable error code.
string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Examplegenerated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}The credential was accepted but lacks the required role or access (e.g. a non-platform-admin calling an /api/v1/admin endpoint).
Media typeapplication/json
object
error
required
object
code
required
A stable, machine-readable error code.
string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Examplegenerated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}