# Simulate step-up retrieve methods

**POST** `/simulate/issuing/cards/tokens/{card_token_id}/step-up/methods`

Simulate Visa's retrieve step-up methods callback for a sandbox card token. Returns the SMS and email methods available
from the cardholder's contact info, or an empty list when none is on file, and records them on the token so a later
send passcode call can resolve the selected method.

### Path Parameters

- `card_token_id` `string` _(required)_ — Unique identifier for the card token.

**Request**

```shell
curl 'https://api.column.com/simulate/issuing/cards/tokens/<card_token_id>/step-up/methods' \
  -XPOST \
  -u :<YOUR API KEY>
```

**Response 200**

```json
{
  "step_up_methods": [
    {
      "identifier": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6",
      "type": "sms",
      "value": "+1******1234"
    }
  ]
}
```
