Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.21 KB

GET_orders_id_items.md

File metadata and controls

54 lines (44 loc) · 1.21 KB

Order Resources

GET orders/:order_id/items

Description

Return details of an order

Requires authentication

  • Details described here

Parameters

NONE

Example

Request

GET https://plugin.api.onesky.io/1/projects/:project_id/orders/:order_id/items

Response

{
    "items": [
        {
            "id": 8359,
            "code": "post2",
            "translateables": {
                "title": {
                    "translations": {
                        "en-US": "design glasses",
                        "zh-TW": "設計眼鏡",
                        "ja-JP": "メガネのデザイン",
                        ...
                    }
                },
                "content": {
                    "translations": {
                        "en-US": "design glasses description",
                        "zh-TW": "設計的眼鏡描述",
                        "ja-JP": "デザインのガラスの説明",
                        ...
                    }
                },
                ...
            },
            "created_at": "2013-03-03T03:03:03+0000",
            "created_at_timestamp": 1328475945
        },
        ...
    ]
}