REST Example: Simulating Life-Cycle Management Events {#tms-net-tkn-lcm-simulate-ex-rest}
=========================================================================================

Request to Simulate the Network Token Status Update

```
{
    "state":"SUSPENDED"
}
```

{#tms-net-tkn-lcm-simulate-ex-rest_codeblock_c51_vmt_gwb}  
Request to Simulate Card Metadata Update

```
{
    "card": {
	"last4": "1234"
        "expirationMonth": "05",
        "expirationYear": "2032"
    }
}	
```

Request to Simulate Card Art Metadata Updates

```
{
    "metadata":{
        "cardArt": {
            "combinedAsset": {
                "update": "true"
            }
        }
    }
}  	
```

Request to Simulate Token and Card Metadata Updates

```
{
    "expirationMonth": "05",
    "expirationYear": "2032",
	"state": "SUSPENDED",
    "card": {
        "last4": "1234",
        "expirationMonth": "05",
        "expirationYear": "2032"
    },
    "metadata":{
        "cardArt": {
            "combinedAsset": {
                "update": "true"
            }
        }
    }
}  	
```

Response to a Successful Request  
A successful response returns an empty `HTTP 204 No Content` status. For more information, see [HTTP Status Codes](/docs/cybs/en-us/tms/developer/all/rest/tms/tms-ref-info/tms-http-status.md "").
