GET v1/company/{companyId}/receipts/{id}

Get receipt detail

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

Company id

decimal number

Required

id

Receipt id

decimal number

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfAppReceiptMasterModel
NameDescriptionTypeAdditional information
Result

AppReceiptMasterModel

None.

Status

boolean

None.

Message

string

None.

Errors

Errors occures while processing request

Collection of ApiError

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": {
    "Id": 1.0,
    "AccountId": 2.0,
    "ContactId": 3.0,
    "ContactName": "sample string 5",
    "VNo": "sample string 6",
    "VDate": "2025-04-22",
    "Description": "sample string 8",
    "Amount": 9.0,
    "Items": [
      {
        "Id": 1.0,
        "InvoiceId": 3.0,
        "VNo": "sample string 4",
        "Amount": 5.0
      },
      {
        "Id": 1.0,
        "InvoiceId": 3.0,
        "VNo": "sample string 4",
        "Amount": 5.0
      }
    ]
  },
  "Status": true,
  "Message": "sample string 2",
  "Errors": [
    {
      "Number": 1,
      "Message": "sample string 2",
      "Exception": {
        "ClassName": "System.Exception",
        "Message": null,
        "Data": null,
        "InnerException": null,
        "HelpURL": "sample string 1",
        "StackTraceString": null,
        "RemoteStackTraceString": null,
        "RemoteStackIndex": 0,
        "ExceptionMethod": null,
        "HResult": 3,
        "Source": "sample string 2",
        "WatsonBuckets": null
      }
    },
    {
      "Number": 1,
      "Message": "sample string 2",
      "Exception": {
        "ClassName": "System.Exception",
        "Message": null,
        "Data": null,
        "InnerException": null,
        "HelpURL": "sample string 1",
        "StackTraceString": null,
        "RemoteStackTraceString": null,
        "RemoteStackIndex": 0,
        "ExceptionMethod": null,
        "HResult": 3,
        "Source": "sample string 2",
        "WatsonBuckets": null
      }
    }
  ]
}