GET /product_tutorials/:id/product_tutorial_instructions

GET /product_tutorials/{id}/product_tutorial_instructions

Returns all ProductTutorialInstructions for ProductTutorial

Path parameters

  • id integer(int64) Required

    ID of the resource to fetch

Responses

GET /product_tutorials/{id}/product_tutorial_instructions
curl \
 -X GET https://api.cosmily.com/api/v1/product_tutorials/{id}/product_tutorial_instructions \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 42,
    "product_tutorial_id": 42,
    "instruction": "string",
    "created_at": "string",
    "updated_at": "string"
  }
]