> For the complete documentation index, see [llms.txt](https://notara.gitbook.io/notara-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notara.gitbook.io/notara-docs/connectors/ramp.md).

# Ramp

Read-only access to Ramp corporate card transactions, cards, employees, departments, and spend limits.

## What It Enables

| Tool                | Capability | Description                                                                                      |
| ------------------- | ---------- | ------------------------------------------------------------------------------------------------ |
| `list_transactions` | `read`     | List card transactions, filterable by date range, cardholder, department, card, state, or amount |
| `list_cards`        | `read`     | List virtual or physical cards with their spend limit and holder                                 |
| `list_users`        | `read`     | List employees with name, email, role, status, and department                                    |
| `list_departments`  | `read`     | List departments with IDs for use as filters                                                     |
| `list_spend_limits` | `read`     | List spend limits (funds) with balances and members                                              |

This connector is permanently read-only. Ramp's API can issue cards and move money — none of that is exposed here.

## Setup

**Required:** Ramp OAuth client ID and client secret.

**Where to find it:** Ramp → **Developer** → create an OAuth app with read-only scopes (`transactions:read`, `cards:read`, `users:read`, `departments:read`, `funds:read`).

1. In the Notara dashboard, go to **Tools**.
2. Click the **Ramp** tile.
3. In Ramp's Developer portal, create an OAuth application and copy the client ID and client secret.
4. Paste both values into the connector fields and click **Verify & Save**.

Your client secret is encrypted at rest with AES-256-GCM.

## Example Prompts

> "How much has the engineering team spent on SaaS tools this month?"

> "Show me all transactions over $500 from last week."

> "What's the remaining balance on the marketing spend limit?"


---

# 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://notara.gitbook.io/notara-docs/connectors/ramp.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.
