docs/integrations/app-connections/ona.mdx
Infisical supports connecting to Ona (Gitpod's cloud development environment platform) using a Personal Access Token (PAT).
In the lower-left corner of Ona, select your name, then click the gear icon to open user settings.
</Step> <Step title="Select the Personal Access Tokens tab"> </Step> <Step title="Create the token"> Click the **New Token** button and add a description for the token (eg, "infisical integration"). The token must have Read & Write access so that Infisical can apply changes in Ona.<Note>
Personal access tokens have an expiration date, so you will need to manually rotate them before they expire to avoid integration downtime. Consider setting a calendar reminder for this task.
</Note>




</Step>
<Step title="Select Ona Connection">
Choose **Ona Connection** from the list of integrations.

</Step>
<Step title="Fill out the Ona Connection form">
Complete the form by providing:
- A descriptive **Name** for the connection.
- An optional **Description**.
- The **Personal Access Token** you generated in Ona.

</Step>
<Step title="Connection created">
After submitting the form, your **Ona Connection** will be created.

</Step>
</Steps>
### Sample request
```bash Request
curl --request POST \
--url https://app.infisical.com/api/v1/app-connections/ona \
--header 'Content-Type: application/json' \
--data '{
"name": "my-ona-connection",
"method": "personal-access-token",
"projectId": "abcdef12-3456-7890-abcd-ef1234567890",
"credentials": {
"personalAccessToken": "[PERSONAL ACCESS TOKEN]"
}
}'
```
### Sample response
```bash Response
{
"appConnection": {
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"name": "my-ona-connection",
"description": null,
"projectId": "abcdef12-3456-7890-abcd-ef1234567890",
"version": 1,
"orgId": "abcdef12-3456-7890-abcd-ef1234567890",
"createdAt": "2025-01-23T10:15:00.000Z",
"updatedAt": "2025-01-23T10:15:00.000Z",
"isPlatformManagedCredentials": false,
"credentialsHash": "d41d8cd98f00b204e9800998ecf8427e",
"app": "ona",
"method": "personal-access-token",
"credentials": {}
}
}
```