salesforce-marketingcloud / SFDC-MC-REST-Style-Guide

REST style guidelines
31 stars 9 forks source link

Http Get Example Clarification #42

Closed EasyAsABC123 closed 8 years ago

EasyAsABC123 commented 8 years ago

Should include tag id: 1, simply because the next examples have a tag with an id of 1

// GET /v4/content/articles/1
// 200 OK
{
    "data" : [{
        "id" : "1",
        "name" : "An Article",
        "tags" : [
            { "id" : "1" }
            { "id" : "2" }
        ]
    }],
    "meta" : {
    }
}
/* returns article id 1 */