# Get Current Order Status by basket id Get current order status by basketId that were created on POST/PUT order requests. Endpoint: GET /public-api/1.0/electricity/orders/status/basket/{basketId}/current Version: 1.0 Security: api-key ## Path parameters: - `basketId` (string, required) ## Response 200 fields (application/json): - `orderId` (string, required) The orderId is the created by Order api as a response from put/post order request. - `basketId` (object) The id of the Basket order. - `basketId.identifier` (string, required) - `individualId` (string, required) Identifier of the individual that created the order. - `participantId` (string, required) The participant identifier of the participant to which the order belongs. - `currentStatus` (object, required) The last situation of order. - `currentStatus.status` (string, required) The status of order status item Enum: "CREATED", "UPDATED", "COMPLETED", "CANCELLED", "FAILED", "MATCHED" - `currentStatus.reason` (string) The reason of the FAILED / CANCELLED status. - `currentStatus.createdTime` (integer, required) The time of this order status item has been processed. Example: 1576663249398 - `history` (array, required) The whole processes of order. ## Response 400 fields (*/*): - `errors` (array) ## Response 404 fields (*/*): - `status` (string, required) The status of order status item Enum: "CREATED", "UPDATED", "COMPLETED", "CANCELLED", "FAILED", "MATCHED" - `reason` (string) The reason of the FAILED / CANCELLED status. - `createdTime` (integer, required) The time of this order status item has been processed. Example: 1576663249398 ## Response 412 fields (*/*): - `errors` (array)