get cards owned by a user
GET
/card/mine
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.
Authorizations
bearerAuth
TypeHTTP (bearer)
Parameters
Query Parameters
showdeleted
Choose whether to show owned cards that have been deleted. Defaults to false.
Typestring
Example
false
Responses
200 OK
application/json
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"
}
]
}