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

# sap-concur-receipt-image

> SAP Concur Receipt Images

**Server path:** `/sap-concur-receipt-image` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                    | Description                  |
| ----------------------------------------------------------------------------------------------------------------------- | ---------------------------- |
| [`sap_concur_receipt_image_delete_expense_receiptimages_id`](#sap_concur_receipt_image_delete_expense_receiptimages_id) | Delete a receipt image by ID |
| [`sap_concur_receipt_image_get_expense_receiptimages`](#sap_concur_receipt_image_get_expense_receiptimages)             | Get all receipt IDs by user  |
| [`sap_concur_receipt_image_get_expense_receiptimages_id`](#sap_concur_receipt_image_get_expense_receiptimages_id)       | Get a receipt image URL      |

***

## sap\_concur\_receipt\_image\_delete\_expense\_receiptimages\_id

Delete a receipt image by ID

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`      | string | Yes      | —       | ID of the receipt image to delete                                                                                                                          |
| `user`    | string | No       | —       | The login ID of the user. Optional. The user must have the Web Services Admin (Professional) or Can Administer (Standard) user role to use this parameter. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "ID of the receipt image to delete"
      },
      "user": {
        "type": "string",
        "description": "The login ID of the user. Optional. The user must have the Web Services Admin (Professional) or Can Administer (Standard) user role to use this parameter."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_receipt\_image\_get\_expense\_receiptimages

Get all receipt IDs by user

**Parameters:**

| Parameter | Type    | Required | Default | Description                                                                                                                                                |
| --------- | ------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `offset`  | string  | No       | —       | Starting page offset                                                                                                                                       |
| `limit`   | integer | No       | —       | Number of records to return (default 25)                                                                                                                   |
| `user`    | string  | No       | —       | The login ID of the user. Optional. The user must have the Web Services Admin (Professional) or Can Administer (Standard) user role to use this parameter. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "offset": {
        "type": "string",
        "description": "Starting page offset"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records to return (default 25)"
      },
      "user": {
        "type": "string",
        "description": "The login ID of the user. Optional. The user must have the Web Services Admin (Professional) or Can Administer (Standard) user role to use this parameter."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## sap\_concur\_receipt\_image\_get\_expense\_receiptimages\_id

Get a receipt image URL

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                                                                                |
| --------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`      | string | Yes      | —       | ReceiptImage ID                                                                                                                                            |
| `user`    | string | No       | —       | The login ID of the user. Optional. The user must have the Web Services Admin (Professional) or Can Administer (Standard) user role to use this parameter. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "ReceiptImage ID"
      },
      "user": {
        "type": "string",
        "description": "The login ID of the user. Optional. The user must have the Web Services Admin (Professional) or Can Administer (Standard) user role to use this parameter."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>
