REST Example: Retrieving Card Art Assets {#tms-net-tkn-card-art-combined-ex-rest}
=================================================================================

Request for the Issuer Logo

```keyword
GET https://apitest.visaacceptance.com/tms/v2/tokens/{tokenId}/{provider}/assets/card-issuer-logo
```

Response to a Successful Request

```
{
    "id": "3883d6a112284123b8b23ec595670eb7",
    "type": "issuerLogo",
    "provider": "vts",
    "content": [
        {
            "type": "image/png",
            "data": "R0l...aP=",	        //Base-64 encoded data
            "width": 200,			// Include if provided by the issuer
            "height": 200			// Include if provided by the issuer
        }
    ]
}
```

