Sign in

Attach receipt to expense

documented

Attach a receipt to an expense.

POST /expenses/{expense_id}Expensesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://app.paymoapp.com/api/expenses/{{$expense_id}}" \
  -X POST \
  -u "{{PAYMOAPP_API_KEY}}:{{PAYMOAPP_API_PASSWORD}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"amount": {{$amount}}, "currency": "{{$currency}}", "description": "{{$description}}", "client_id": {{$client_id}}, "project_id": {{$project_id}}, "date": "{{$date}}", "tags": ["{{$tag}}"]}'
Attach receipt to expense · Paymo · OpenIntegrations