Orders
Service Detail
Read the accepted payload, price, and item limits for one service.
Modified at May 4, 2026, 05:38 AM UTC
GET/api/services/{idOrCode}service.read_detail
Returns one service with its accepted request payload, price, item limits, and result schema.
Request
curl "https://cekceir.online/api/services/{idOrCode}" \
-H "Authorization: Bearer <api_key>" \Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
| Authorization | header string | Yes | Bearer token header in the format Bearer <api_key>. |
| idOrCode | path string | Yes | Numeric service ID or service code. |
Success Response
{ "data": { "id": 1, "code": "cek_imei", "name": "Cek Status IMEI", "description": null, "open_time": "08:00", "close_time": "23:00", "is_active": true, "processing_type": "automatic", "service_type": { "id": 1, "code": "imeiroamer", "name": "IMEI", "description": null, "is_active": true, "input_schema": { "type": "object", "properties": { "imeis": { "type": "array", "items": { "type": "string", "pattern": "^[0-9]{15}$" }, "minItems": 1 } }, "required": ["imeis"], "additionalProperties": true, "x-quantityFrom": "/imeis", "x-requestFrom": "/imeis" }, "result_schema": { "type": "object" } }, "scope": { "access_channel": "api", "account_type": "basic", "source": "base" }, "rule": { "unit_price": 1500, "min_items": 1, "max_items": 100, "processing_type": "automatic" }, "availability": null, "created_at": "2026-04-26T00:00:00.000Z", "updated_at": "2026-04-26T00:00:00.000Z" }}Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
| data.id | number | Yes | Service ID. |
| data.code | string | Yes | Service code to send when creating an order. |
| data.name | string | Yes | Service name. |
| data.description | string or null | No | Service description when configured. |
| data.open_time | string or null | No | Daily open time in HH:mm, or null when always open. |
| data.close_time | string or null | No | Daily close time in HH:mm, or null when always open. |
| data.is_active | boolean | Yes | Whether the service is active. |
| data.processing_type | string | Yes | Service processing type. |
| data.service_type | object | Yes | Service type metadata and schemas. |
| data.service_type.input_schema | object | Yes | JSON Schema for the POST /api/order data field. |
| data.service_type.result_schema | object | Yes | JSON Schema for the result payload. |
| data.scope.access_channel | string | Yes | Access channel used to resolve the service rule. |
| data.scope.account_type | string | Yes | Account type used to resolve the service rule. |
| data.scope.source | string | Yes | Rule source for the returned price and limits. |
| data.rule.unit_price | number | Yes | Price per item for this account. |
| data.rule.min_items | number | Yes | Minimum number of items. |
| data.rule.max_items | number | Yes | Maximum number of items. |
| data.rule.processing_type | string | Yes | Rule-level processing type. |
| data.availability | object or null | No | Runtime availability details for services that expose live channel or slot data. |
| data.created_at | ISO datetime | Yes | Service creation time. |
| data.updated_at | ISO datetime | Yes | Last service update time. |