# Get Pay Code

> GET /v1/settings/pay-codes/{payCodeId}

`GET https://app.untetherlabs.com/api/v1/settings/pay-codes/{payCodeId}`

## Request

```bash
curl -X GET 'https://app.untetherlabs.com/api/v1/settings/pay-codes/3fa85f64-5717-4562-b3fc-2c963f66afa6' \
  -H 'Authorization: Bearer $UNTETHER_API_KEY'
```

## Path parameters

- `payCodeId` (uuid, required)

## Response 200

- `name` (string, required, example "Overtime")
- `shorthandName` (string, required, example "OT")
- `hexColor` (string, required, example "#f97316")
- `type` (enum, required, one of `hours`, `days`, `money`)
- `value` (number, required, example 1.5)

## Errors

- `validation` (400) — Input validation failed.
- `pay-code-not-found` (404) — A specified pay code does not exist in the system.
