> For the complete documentation index, see [llms.txt](https://docs.tryterra.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tryterra.co/integration-partners/submitting-an-application.md).

# Submitting an Application

{% hint style="info" %}
**Not using OAuth 2.0, or no traditional API?** You can still become a partner. Email us at <providers@tryterra.co> and we'll guide you through the right path.
{% endhint %}

If your platform supports OAuth 2.0, the fastest way to get started is through Terra's self-serve application form at [partner.tryterra.co](https://partner.tryterra.co/). It walks you through the configuration Terra needs to connect to your API, step by step.

#### **What you'll configure in the form**

**OAuth 2.0 URLs**

Your authorization endpoint (where users log in and approve access), your token endpoint (where Terra exchanges the code for a token), and optionally a refresh or revocation URL.

**Client credentials**

Your `client_id` and `client_secret`: the credentials Terra uses to identify itself when calling your OAuth endpoints. You generate these when you register Terra as an authorized app in your developer portal.

**User ID extraction**

After a user connects, Terra needs to know which user it's dealing with. You tell Terra where to find that ID: either directly in the token response, or by pointing to a user-info endpoint and the field to read from.

**Scopes**

Scopes are the permissions a user grants when they connect. You define which scopes Terra should request, which are required for each data type, and how granted scopes are returned in the response.

**Data endpoints**

For each data type your platform supports, you provide the endpoint URL, HTTP method, and the scopes required to access it.

#### **Before you start**

Make sure you have the following ready:

* [ ] OAuth 2.0 authorization and token endpoints
* [ ] Client credentials (`client_id` and `client_secret`) for your OAuth app
* [ ] A clear way to identify users after token exchange
* [ ] Your scope model documented
* [ ] Endpoint details for the data types you support

After you submit, Terra's team reviews your configuration and we'll get back to you shortly.

#### **Contacts and links**

* Support and questions: <providers@tryterra.co>
* [Integration Partners Terms of Service](https://tryterra.co/integration-partner-terms)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.tryterra.co/integration-partners/submitting-an-application.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
