Retrieve a single order by its number
curl --request GET \
--url https://api.rabot-charge.de/partner/v1/orders/{contractNumber} \
--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": {
"order": {
"customerNumber": "123456789",
"emailAddress": "[email protected]",
"tariffName": "rabot.smart",
"contractNumber": "987654321",
"firstName": "Max",
"lastName": "Mustermann",
"businessName": null,
"meterNumber": "12LN6786454",
"meLoIdentifier": "DE12345678901234567890",
"maLoIdentifier": "99987999749",
"deliveryAddress": {
"title": "Dr.",
"firstName": "Thomas",
"lastName": "Mustermann",
"businessName": null,
"gender": "Male",
"extension": null,
"streetName": "Grüner Weg",
"houseNumber": "42",
"city": "Berlin",
"postCode": "14109",
"countryCode": "DE"
},
"state": "Delivery",
"processingInfo": "Exported to MaKo provider",
"denialReason": "Other",
"deliveryState": {
"startDate": "2024-02-01",
"endDate": null,
"state": "InChangeProcess",
"message": null,
"denialReason": null,
"cancellationReason": null
},
"actualDateOfDelivery": "2025-04-01",
"endDateOfDelivery": null,
"contractSignatureDate": "2025-02-23 14:24:15",
"contractSignedAt": "2025-02-23 14:24:15",
"estimatedYearlyConsumption": 3500,
"previousYearConsumption": 4200
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the contract
OK
API response DTO with data.
Success status of the operation based on status code (2xx range).
true
Optional message to provide additional information about the operation result.
null
Optional error details in case of an error(s).
Hide child attributes
Severity of the error.
Error, Warning, Notice "Error"
Internal error code for client processing.
"validation-failed"
Error message.
"First name is required for non-business customers."
Additional details about the error.
null
Optional reference URI to point to the resulting resource.
Returned data instance.
Hide child attributes
Current contract status
Hide child attributes
Read-only customer number provided by the API
"123456789"
Email Address of the customer
Name of the selected tariff for this order
"rabot.smart"
Order / Contract number
"987654321"
First name of the customer or NULL if business customer.
"Max"
Last name of the customer or NULL if business customer.
"Mustermann"
Business name or NULL if private customer
null
Meter number as provided as part of the order, can be null
"12LN6786454"
Metering Location identifier or NULL if not provided
"DE12345678901234567890"
Market Location identifier or NULL if not provided
"99987999749"
Delivery address of the customer
Hide child attributes
Academic title or NULL if none
"Dr."
First name or NULL if business address
"Thomas"
Last name or NULL if business address
"Mustermann"
Business name in case of business address or NULL if person
null
Gender of the address holder
Male, Female, Other Address extension
null
Street name
"Grüner Weg"
House number or NULL if none
"42"
Name of the city
"Berlin"
Postcode in valid format
"14109"
ISO 3166 A2 code of the country
"DE"
State of the order processing
Open, Delivery, Unspecified, PendingDelivery, Cancelled, Rejected, Revoked, Processing "Delivery"
Human-readable information about the processing of Order.
"Exported to MaKo provider"
Reason for the order denial, if applicable
Dunning, InsufficientSolvency, ContractCommitment, Duplicate, UnsuccessfulSupplierChange, Other "Other"
Last delivery state update information for this order.
Hide child attributes
Delivery start date.
"2024-02-01"
Delivery end date or NULL if not specified.
null
Current delivery state
None, Delivery, DeliveryPending, CancelledDelivery, CancelledPendingDelivery, Cancelled, Denied, Revoked, InChangeProcess, Unknown "InChangeProcess"
Message received with the delivery state change from MaKo operator.
null
Reason for denial if state is "Denied" or NULL otherwise.
Dunning, InsufficientSolvency, ContractCommitment, Duplicate, UnsuccessfulSupplierChange, Other null
Cancellation reason if state is "Canceled" or NULL otherwise.
None, Dunning, OtherSupplier, CustomerSupplierChange, CustomerRelocation, Decommissioning, Unknown, CustomerProduct, CustomerPrice, CustomerService, CustomerMisc, CustomerPriceChange null
Start of delivery date, as confirmed by DSO and previous supplier, null if not known (yet)
"2025-04-01"
End of delivery date, if contract is canceled
null
Contract signature date, as provided in order creation request
"2025-02-23 14:24:15"
Contract signature date, as provided in order creation request
"2025-02-23 14:24:15"
Estimated yearly consumption, in kWh
3500
Previous year consumption, in kWh
4200
Was this page helpful?
curl --request GET \
--url https://api.rabot-charge.de/partner/v1/orders/{contractNumber} \
--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": {
"order": {
"customerNumber": "123456789",
"emailAddress": "[email protected]",
"tariffName": "rabot.smart",
"contractNumber": "987654321",
"firstName": "Max",
"lastName": "Mustermann",
"businessName": null,
"meterNumber": "12LN6786454",
"meLoIdentifier": "DE12345678901234567890",
"maLoIdentifier": "99987999749",
"deliveryAddress": {
"title": "Dr.",
"firstName": "Thomas",
"lastName": "Mustermann",
"businessName": null,
"gender": "Male",
"extension": null,
"streetName": "Grüner Weg",
"houseNumber": "42",
"city": "Berlin",
"postCode": "14109",
"countryCode": "DE"
},
"state": "Delivery",
"processingInfo": "Exported to MaKo provider",
"denialReason": "Other",
"deliveryState": {
"startDate": "2024-02-01",
"endDate": null,
"state": "InChangeProcess",
"message": null,
"denialReason": null,
"cancellationReason": null
},
"actualDateOfDelivery": "2025-04-01",
"endDateOfDelivery": null,
"contractSignatureDate": "2025-02-23 14:24:15",
"contractSignedAt": "2025-02-23 14:24:15",
"estimatedYearlyConsumption": 3500,
"previousYearConsumption": 4200
}
}
}