REST Example: Provisioning a Network Token with Push Provisioning {#tms-net-tkn-card-create-ex-rest}
====================================================================================================

Request

```
{
  "accountReferenceId": "703699458563818460001",
  "createInstrumentIdentifier": true,
  "source": "ISSUER",
  "card": {
    "type": "001"
  }
}
```

{#tms-net-tkn-card-create-ex-rest_codeblock_c51_vmt_gwb}  
Request with Passcode

```
{
  "source": "ISSUER",
  "accountReferenceId": "703699458563818460001",
  "card": {
    "type": "001"
  },
  "passcode": {
    "value": "123456"
  },
  "createInstrumentIdentifier": true
}
```

Response to a Successful Request

```keyword
{
    "_links": {
        "self": {
            "href": "https://apitest.visaacceptance.com/tms/v2/tokenized-cards/139C09B1970689FAE0633F36CF0A2D7B"
        },
        "instrumentIdentifier": {
            "href": "https://apitest.visaacceptance.com/tms/v1/instrumentidentifiers/7010000000016241111"
        }
    },
    "id": "139C09B1970689FAE0633F36CF0A2D7B",
    "object": "tokenizedCard",
    "state": "ACTIVE",
    "enrollmentId": "ja9mejoqszrqfubwy9mqz4ot4fnlvgpp",
    "tokenReferenceId": "uvfofwjor4nobycjf5cy9cwfyzu5pipa",
    "number": "404626XXXXXX0572",
    "expirationMonth": "03",
    "expirationYear": "2025",
    "type": "visa",
    "card": {
        "suffix": "4608",
        "expirationMonth": "03",
        "expirationYear": "2025"
    },
    "source": "ISSUER",
    "accountReferenceId": "703699458563818460001"
}
```

