Skip to main content
GET
/
partner
/
v1
/
tariffs
Return list of available tariffs
curl --request GET \
  --url https://api.rabot-charge.de/partner/v1/tariffs \
  --header 'Authorization: Bearer <token>'
{
  "isSuccess": true,
  "message": null,
  "error": [
    {
      "severity": "Error",
      "code": "validation-failed",
      "message": "First name is required for non-business customers.",
      "details": null
    }
  ],
  "refUri": "<string>",
  "data": {
    "tariffName": "<string>",
    "providerName": "<string>",
    "tariffKey": "<string>"
  }
}
This endpoint allows you to get a list of tariffs available for you to offer to customers. Use the tariffKey in subsequent calls to calculate offer price and create order calls

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

effectiveDate
string<date>

Effective date or NULL, if today

Response

OK

API response DTO with data.

isSuccess
boolean

Success status of the operation based on status code (2xx range).

Example:

true

message
string | null

Optional message to provide additional information about the operation result.

Example:

null

error
object[] | null

Optional error details in case of an error(s).

refUri
string<uri> | null

Optional reference URI to point to the resulting resource.

data
object

Returned data instance.