---
title: "Associate noname card with customer"
method: PUT
path: "/wallet/v2/cards/{cardId}/noname/bind"
tags: ["Noname"]
---

# Associate noname card with customer

`PUT /wallet/v2/cards/{cardId}/noname/bind`

Bind an account and customer to a noname card, which changes its status to `CREATED`. The card is then treated as a normal physical plastic or metal card.

You have to pass this endpoint a noname card's ID. Card IDs are generated when the [Start noname card bulk process](https://developers.pismo.io/pismo-docs/reference/start-bulk) endpoint is called.  This endpoint generates an event for each card - [Card created](https://developers.pismo.io/events/docs/cards-create-1) - with event data that includes the card ID, bulk ID, and external ID. Refer to the [Data and reporting](https://developers.pismo.io/pismo-docs/docs/data-reporting-overview) guide for information on events and setting up event notifications.

The bind operation is completed asynchronously and generates a [Customer bound to noname card](https://developers.pismo.io/events/docs/cards-bind-card-1) event. Make sure the operation has completed and the event generated before attempting to access or use the associated card. 

**Card reissuing**

* You can use this endpoint to reissue a card&mdash;replacing the card to be reissued with a noname card, which is then treated as a normal physical card. If a card to be replaced is entered (`reissued_card_id`), the [Card updated](https://developers.pismo.io/events/docs/cards-update-1) event is also generated. 

* If you attempt to reissue a card to a card that has already been associated, meaning it is no longer a noname card and no longer has an `UNBOUND` status, you will get a **409 Conflict** error. 

**Note:** This endpoint requires an account token - an access token encoded with a Pismo account ID.

## Path parameters

- `cardId` string, required

## Headers

- `x-account-id` string, required
- `x-customer-id` integer, required

## Request body

- BindRequest
  - `reissued_card_id` integer — Last issued card ID

## Response `202`

Your request was accepted. The bind operation is made asynchronously, check the event [Customer bound to noname card](https://developers.pismo.io/events/docs/cards-bind-card-1).

## Other responses

- `400` — Bad request
- `401` — Access token is missing or invalid
- `403` — The request has been lost
- `409` — The specified resource status conflicts with the current request.
- `500` — Internal server error

---

[API](https://skmtc.net/pismo/apis/platform-authentication.md) · [All operations](https://skmtc.net/pismo/apis/platform-authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pismo/platform-authentication/revisions/935b62e16de4/schema)
