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

# Connector not found

> No such connector exists in this organization.

This page is the resolution target of the RFC 9457 `type` URI on every `connector_not_found` problem body: `https://docs.get-exo.com/errors/connector_not_found`.

**HTTP status: `404` Not Found**.

```json theme={"theme":{"light":"github-light-default","dark":"github-dark-default"}}
{
  "type": "https://docs.get-exo.com/errors/connector_not_found",
  "title": "Connector not found",
  "status": 404,
  "detail": "No such connector in this organization.",
  "code": "connector_not_found",
  "requestId": "req_9f2c41ab7d0e5c18"
}
```

## Why it happens

The connector path segment named a provider Exo supports, but this organization has no installation of it to act on.

Note that `GET /v1/connectors` does not 404 for an uninstalled provider: it returns a stub with `status: "not_connected"`. This code is for acting on an installation that is not there.

## How to fix it

* Start the install with `POST /v1/connectors/github` and follow the returned authorization url.
* Check current state with `GET /v1/connectors` first.

## Related

* [`connector_not_syncable`](/errors/connector_not_syncable)
* [`not_found`](/errors/not_found)
* [Errors](/platform/errors) for the envelope and the full catalogue
