> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pair

> Pair

### Request body

`PairStationRequest`

<ParamField body="name" type="string" required />

<ParamField body="printers" type="string[]" />

### Responses

<ResponseField name="201" type="PairResponse" />

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.stateset.com/api/v1/print-stations' \
    --header 'Authorization: Bearer YOUR_API_KEY' \
    --header 'Content-Type: application/json' \
    --data '{
    "name": "string",
    "printers": [
      "string"
    ]
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json 201 theme={null}
  {
    "station": {
      "id": "string",
      "last_seen_at": null,
      "name": "string",
      "printers": [
        "string"
      ],
      "revoked": true
    },
    "token": "string"
  }
  ```
</ResponseExample>
