# Get Suite Token

`GET /workspaces/:workspace/projects/:project_name/unit-tests/suites/:suite_id/token`

Get unit test suite token

**Required Scopes:** `UNIT_TEST_INFO`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The human-readable ID of the project */
  project_name: string; // Example: "my-project"
  /** The ID of the unit test suite */
  suite_id: string; // Example: "MNbyVedg"
}
```


---
Original source: https://buddy.works/docs/api/unit-tests/suites/get-token