I am hoping to have something clarified for me when it comes to returned meta data for the GET/v1/styles/:key
endpoint.
The docs say this is the return structure:
{
"status": Number,
"error": Boolean,
"meta": {
"key": String,
"file_key": String,
"node_id": String,
"style_type": StyleType,
"thumbnail_url": String,
"name": String,
"description": String,
"updated_at": String,
"created_at": String,
"sort_position": String,
"user": User,
},
}
Is it safe to assume that this meta.key
should match the key
that is passed into the endpoint argument? If not, what is the reason for the difference?