Skip to content

get MYO content for a user

This returns the MYO cards belonging to the authenticated user.

The card objects do not include the chapters property.
To access all the card details including the chapters, you will need to query the /card/{cardId} endpoint.

Responses

200 OK

Content-Type: application/json
{
  "cards": [
    {
      "availability": "free",
      "cardId": "string",
      "clubAvailability": [
        {
          "store": "string"
        }
      ],
      "content": {
        "activity": "yoto_Player",
        "config": {
          "autoadvance": "repeat",
          "onlineOnly": true,
          "shuffle": [
            {
              "end": 0,
              "limit": 0,
              "start": 0
            }
          ],
          "trackNumberOverlayTimeout": 0
        },
        "cover": {
          "imageL": null
        },
        "editSettings": {
          "autoOverlayLabels": "disabled",
          "editKeys": true,
          "podcastTrackDisplay": {
            "icon16x16": "string"
          },
          "podcastType": "managed"
        },
        "hidden": true,
        "restricted": true,
        "version": "string"
      },
      "createdAt": "string",
      "deleted": true,
      "metadata": {
        "author": "string",
        "category": "stories",
        "cover": {
          "imageL": null
        },
        "description": "string",
        "feedUrl": null,
        "hidden": true,
        "languages": [
          "string"
        ],
        "list": [
          null
        ],
        "media": {
          "duration": 0,
          "fileSize": 0,
          "hasStreams": true
        },
        "note": "string",
        "order": null,
        "previewAudio": "string",
        "share": true,
        "status": {
          "name": "inprogress",
          "updatedAt": "string"
        }
      },
      "shareLinkCreatedAt": "string",
      "shareLinkUrl": "string",
      "sharing": {
        "linkCreatedAt": "string",
        "linkUrl": "string",
        "shareCount": 0,
        "shareLimit": 0
      },
      "slug": "string",
      "sortkey": "string",
      "title": "string",
      "updatedAt": "string",
      "userId": "string"
    }
  ]
}

Parameters

Query Parameters

showdeleted
Choose whether to show owned cards that have been deleted. Defaults to false.
Type
string
GET
/content/mine
Server URL:https://api.yotoplay.com
Authorization
bearerAuth
Query Parameters
KEYVALUE

Samples

curl "https://api.yotoplay.com/content/mine"
--header "Authorization: Bearer [YOUR_TOKEN]"