Skip to main content
GET
/
expenses
/
{expenseId}
/
receipts
Get expense receipts
curl --request GET \
  --url https://openapi.pleo.io/v1/expenses/{expenseId}/receipts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "url": "<string>",
    "mimeType": "<string>",
    "size": 123
  }
]

Authorizations

Authorization
string
header
required

Open API Bearer token

Path Parameters

expenseId
string
required

Unique UUID of the expense.

Example:

"0f0e000-000d-0d00-000b-00db0d000fae"

Response

An array of receipts info with the download URL will be returned.

id
string
required

The unique UUID identifier of the receipt

name
string
required

File name of the receipt

url
string
required

Download URL of the receipt (remains valid for 15 hours)

mimeType
string
required

Mime type of the file

size
number
required

Size of the file in KB