- EnKash Developer Portal Overview
- Payment Gateway
- Payment Links
- Bharat Connect (BBPS)
- About Bharat Connect
- B2B Invoicing
- Invoice
- Payment
- Financing
- Onboarding
- cdNote
- Purchase Order
- webhook-invoice
- webhook-payments
- webhook-business-onboarding
- webhook-financing
- webhook-cdNote
- Webhook Purchase Order
- Webhook Send Purchase Order RequestPOST
- Webhook Send Purchase Order ResponsePOST
- Webhook Confirm Purchase Order RequestPOST
- Webhook Confirm Purchase Order ResponsePOST
- Webhook Edit Purchase Order RequestPOST
- Webhook Edit Purchase Order ResponsePOST
- Webhook Status Change Purchase Order RequestPOST
- Webhook Status Change Purchase Order ResponsePOST
- Invoice
- Bill Payments
- Bill Payments Overview
- Get Authentication TokenPOST
- Get BillerTypesGET
- Get BillersGET
- Fetch BillPOST
- Create Bill APIPOST
- Create Bill Without Bill FetchPOST
- Bill PaymentPOST
- Utility Bill Approval APIPUT
- Get Utility Bill StatusGET
- Get Utility Bill by Reference IdGET
- Get Utility Bills DetailPOST
- Bill Payment WebhookPOST
- Payouts
- Accounts Payable Management Tool
- Account Receivable
- Expense Management
- Loyalty
- Card Management
- Verification Suite
Expenses
Developing
POST
/api/v0/expense/search
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379
Query Params
limit
stringÂ
required
Example:
10
offset
stringÂ
required
Example:
0
orderBy
stringÂ
required
Example:
lastModifiedDate
direction
stringÂ
required
Example:
DESC
Header Params
authorization
stringÂ
required
Example:
Bearer GzB4Ix1WuJelUIpLLCN3tmvEIA4
content-type
stringÂ
required
Example:
application/json
Cookie
stringÂ
required
Example:
_cfuvid=HjA.EX_.WECuOWK5EXOB88UqYNafEYAj5NA_R6OYhgI-1740469627647-0.0.1.1-604800000; JSESSIONID=C36565AE591BF368AD043DAC629ECD0A
Body Params application/json
settlementStatus
stringÂ
required
userType
stringÂ
required
limit
integerÂ
required
Example
{
"settlementStatus": "ALL",
"userType": "ENTERPRISE_ADMIN",
"limit": 10
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.your-api-server.com/api/v0/expense/search?members&reference&Type&_postman_listIndexKey=key&_postman_listAllowsMultipleValues' \
--data-raw '{
"settlementStatus": "ALL",
"userType": "ENTERPRISE_ADMIN",
"limit": 10
}'
Responses
🟢200Success
application/json
Body
response_code
integerÂ
required
response_message
stringÂ
required
payload
objectÂ
required
recordsCount
integerÂ
required
data
array [object {19}]Â
required
Example
{
"response_code": 0,
"response_message": "Success",
"payload": {
"recordsCount": 1,
"data": [
{
"createdDate": "2024-06-03T16:25:05.188",
"expenseId": "EXP721942CN9",
"amount": 5000,
"paymentMode": "PERSONAL_CARD",
"expenseDate": "2024-06-03",
"category": "CATEGORY WATCH",
"merchantName": "afc",
"paymentIdentifier": null,
"settlementStatus": "UPDATED_AND_SUBMITTED",
"dossier": "afc",
"empName": "Likhith B",
"policyDeviationReasons": null,
"policyId": null,
"requestFormId": null,
"requestFormName": null,
"singleExpense": true,
"reimbursementRequired": true,
"delegateCreatorEmpName": null,
"lastApprovedAmount": 500
}
]
}
}
Modified at 2025-02-25 12:17:06