Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/zoho-inventory-bills-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: batches Bills API
description: Batches help you track inventory items by batch numbers, manufacturing dates, and expiration dates.
contact: {}
version: 1.0.0
servers:
- url: https://www.zohoapis.com/inventory/v1
description: API Endpoint
tags:
- name: bills
description: Bills Module
paths:
/bills:
x-mcp-group:
- Bills
parameters:
- $ref: '#/components/parameters/organization_id'
post:
tags:
- bills
operationId: create_bill
summary: Create a Bill
description: Creates a Bill in Zoho Inventory. Description about the extra parameter <code>attachment</code> Allowed extensions are gif, png, jpeg, jpg, bmp and pdf.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/create-a-bill-request'
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/create-a-bill-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.CREATE
get:
tags:
- bills
operationId: list_bills
summary: List all Bills.
description: Lists all the Bills in Zoho Inventory.
parameters:
- name: page
in: query
description: Page number to be fetched. Default value is 1.
required: false
schema:
type: integer
default: 1
example: 1
- name: per_page
in: query
description: Number of records to be fetched per page. Default value is 200.
required: false
schema:
type: integer
default: 200
example: 200
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/list-all-bills-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.READ
/bills/{bill_id}:
x-mcp-group:
- Bills
parameters:
- name: bill_id
in: path
required: true
description: Unique identifier of the bill.
schema:
type: string
example: 4815000000045067
- $ref: '#/components/parameters/organization_id'
get:
tags:
- bills
operationId: get_bill
summary: Retrieve a Bill
description: Fetches the details of a Bill.
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/retrieve-a-bill-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.READ
put:
tags:
- bills
operationId: update_bill
summary: Update a Bill
description: Updates the details of an existing Bill.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/update-a-bill-request'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/update-a-bill-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
delete:
tags:
- bills
operationId: delete_bill
summary: Delete a Bill.
description: Deletes a Bill from Zoho Inventory.
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/delete-a-bill-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.DELETE
/bill/{bill_id}/customfields:
x-mcp-group:
- Bills
put:
tags:
- bills
operationId: update_custom_field_in_bill
summary: Update custom field in existing bills
description: Update the value of the custom field in existing bills.
parameters:
- name: bill_id
in: path
required: true
description: Unique identifier of the bill.
schema:
type: string
example: '460000000098765'
- $ref: '#/components/parameters/organization_id'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/custom_fields'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/update-an-bill-customfield-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
/bills/{bill_id}/status/open:
x-mcp-group:
- Bills
parameters:
- name: bill_id
in: path
required: true
description: Unique identifier of the bill.
schema:
type: string
example: 4815000000045067
- $ref: '#/components/parameters/organization_id'
post:
tags:
- bills
operationId: mark_bill_as_open
summary: Mark as Open
description: Marks a Bill as Open.
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/mark-as-open-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.CREATE
/bills/{bill_id}/status/void:
x-mcp-group:
- Bills
parameters:
- name: bill_id
in: path
required: true
description: Unique identifier of the bill.
schema:
type: string
example: 4815000000045067
- $ref: '#/components/parameters/organization_id'
post:
tags:
- bills
operationId: mark_bill_as_void
summary: Mark as Void
description: Marks a Bill as Void.
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/mark-as-void-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.CREATE
/bills/{bill_id}/submit:
x-mcp-group:
- Bills
post:
tags:
- bills
operationId: submit_bill
summary: Submit a bill for approval
description: Submit a bill for approval workflow.
parameters:
- name: bill_id
in: path
description: Unique ID of the bill.
required: true
schema:
type: string
example: '4815000000045067'
- $ref: '#/components/parameters/organization_id'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/approval-action-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
/bills/{bill_id}/approve:
x-mcp-group:
- Bills
post:
tags:
- bills
operationId: approve_bill
summary: Approve a bill
description: Approve a submitted bill.
parameters:
- name: bill_id
in: path
description: Unique ID of the bill.
required: true
schema:
type: string
example: '4815000000045067'
- $ref: '#/components/parameters/organization_id'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/approval-action-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
/bills/{bill_id}/approve/final:
x-mcp-group:
- Bills
post:
tags:
- bills
operationId: approve_bill_final
summary: Final approval of a bill
description: Perform the final approval of a bill (admin only).
parameters:
- name: bill_id
in: path
description: Unique ID of the bill.
required: true
schema:
type: string
example: '4815000000045067'
- $ref: '#/components/parameters/organization_id'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/approval-action-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
/bills/{bill_id}/reject:
x-mcp-group:
- Bills
post:
tags:
- bills
operationId: reject_bill
summary: Reject a bill
description: Reject a submitted bill.
parameters:
- name: bill_id
in: path
description: Unique ID of the bill.
required: true
schema:
type: string
example: '4815000000045067'
- $ref: '#/components/parameters/organization_id'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/reject-request'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/approval-action-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
/bills/submit:
x-mcp-group:
- Bills
post:
tags:
- bills
operationId: bulk_submit_bills
summary: Bulk submit bills for approval
description: Submit multiple bills for approval workflow at once.
parameters:
- $ref: '#/components/parameters/organization_id'
- name: bill_ids
in: query
description: Comma-separated list of bill IDs to submit for approval.
required: true
schema:
type: string
example: 4815000000045067,4815000000045090
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/approval-action-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
/bills/approve:
x-mcp-group:
- Bills
post:
tags:
- bills
operationId: bulk_approve_bills
summary: Bulk approve bills
description: Approve multiple submitted bills at once.
parameters:
- $ref: '#/components/parameters/organization_id'
- name: bill_ids
in: query
description: Comma-separated list of bill IDs to approve.
required: true
schema:
type: string
example: 4815000000045067,4815000000045090
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/approval-action-response'
deprecated: false
security:
- Zoho_Auth:
- ZohoInventory.bills.UPDATE
components:
schemas:
batches-response:
description: Batches tracked for the line item. Returned for items with batch tracking enabled.
type: array
items:
type: object
properties:
batch_id:
description: Unique identifier of the batch.
type: string
example: '6780203000001066789'
batch_number:
description: Batch number.
type: string
example: BTC-TL-890
external_batch_number:
description: External batch number from the manufacturer.
type: string
example: MFR-TL-890
manufacturer_date:
description: Manufacturing date of the batch.
type: string
example: '2026-05-12'
expiry_date:
description: Expiration date of the batch.
type: string
example: '2026-12-24'
in_quantity:
description: Inward quantity recorded for the batch.
type: number
format: float
example: 2
batch_in_id:
description: Unique identifier of the batch entry on the line item.
type: string
example: '6780203000001066797'
storages:
description: Bin/storage locations from which stock was received for this batch.
type: array
x-node_available_in:
- Batch with Bin tracked items
items:
type: object
properties:
storage_id:
description: Unique identifier of the bin/storage location.
type: string
example: '6780203000001066003'
storage_name:
description: Display name of the bin/storage location.
type: string
example: Bin A1
in_quantity:
description: Inward quantity recorded against the bin.
type: number
format: float
example: 2
storage_in_id:
description: Unique identifier of the storage entry on the line item.
type: string
example: '6780203000001066792'
paid_through_account_id:
description: ID for the account through which the payment is made.
type: string
example: 4815000000000361
bill_number:
description: Bill number of Purchase Order.
type: string
example: BL-00002
account_id:
description: Account ID of the item.
type: string
example: 4815000000035003
location_id:
description: Location ID
type: string
example: '460000000038080'
tax_type:
description: Type of the tax
type: string
example: Tax group
vendor_credits:
description: The available Vendor Credits.
type: array
items:
type: object
properties:
vendor_credit_id:
$ref: '#/components/schemas/vendor_credit_id'
vendor_credit_bill_id:
$ref: '#/components/schemas/vendor_credit_bill_id'
vendor_credit_number:
$ref: '#/components/schemas/vendor_credit_number'
date:
$ref: '#/components/schemas/date'
amount:
$ref: '#/components/schemas/amount'
is_item_level_tax_calc:
description: Checks whether item level tax is calculated or not.
type: boolean
example: true
reverse_charge_tax_name:
description: Name of the reverse charge tax
type: string
example: inter
x-node_available_in:
- in
x-node_unavailable_in: []
due_by_days:
description: Number of days by which the Bill is due.
type: integer
example: 69
open_purchaseorders_count:
description: Number of Purchase Orders that are associated with this Bill and open.
type: integer
example: 4
location_name:
description: Name of the location
type: string
notes:
description: Notes for the Bill.
type: string
example: Sample Note
tax_exemption_code:
description: Code of the Tax Exemption Applied
type: string
x-node_available_in:
- in
- au
- ca
- mx
x-node_unavailable_in: []
delete-a-bill-response:
type: object
properties:
code:
type: integer
example: 0
readOnly: true
message:
type: string
example: The Bill has been deleted.
readOnly: true
tax_name:
description: Name of the tax.
type: string
example: Purchase tax
bcy_rate:
description: Item rate in the organization's base currency.
type: number
format: double
example: 122
address:
description: Name of the street of the customer's billing address.
type: string
example: No:234,90 Church Street
reverse_charge_tax_amount:
description: Enter reverse charge amount
type: number
format: double
example: 100
x-node_available_in:
- in
x-node_unavailable_in: []
image_type:
description: The type (file format) of the image.
type: string
example: jpg
retrieve-a-bill-response:
type: object
properties:
code:
type: integer
example: 0
readOnly: true
message:
type: string
example: success
readOnly: true
bill:
type: object
properties:
bill_id:
$ref: '#/components/schemas/bill_id'
purchaseorder_id:
$ref: '#/components/schemas/purchaseorder_id'
vendor_id:
$ref: '#/components/schemas/vendor_id'
vendor_name:
$ref: '#/components/schemas/vendor_name'
unused_credits_payable_amount:
$ref: '#/components/schemas/unused_credits_payable_amount'
status:
$ref: '#/components/schemas/status'
bill_number:
$ref: '#/components/schemas/bill_number'
date:
$ref: '#/components/schemas/date'
due_date:
$ref: '#/components/schemas/due_date'
reference_number:
$ref: '#/components/schemas/reference_number'
due_by_days:
$ref: '#/components/schemas/due_by_days'
currency_id:
$ref: '#/components/schemas/currency_id'
currency_code:
$ref: '#/components/schemas/currency_code'
currency_symbol:
$ref: '#/components/schemas/currency_symbol'
price_precision:
$ref: '#/components/schemas/price_precision'
exchange_rate:
$ref: '#/components/schemas/exchange_rate'
is_item_level_tax_calc:
$ref: '#/components/schemas/is_item_level_tax_calc'
line_items:
$ref: '#/components/schemas/line_items'
location_id:
$ref: '#/components/schemas/location_id'
location_name:
$ref: '#/components/schemas/location_name'
taxes:
$ref: '#/components/schemas/taxes'
vendor_credits_applied:
$ref: '#/components/schemas/vendor_credits_applied'
sub_total:
$ref: '#/components/schemas/sub_total'
tax_total:
$ref: '#/components/schemas/tax_total'
balance:
$ref: '#/components/schemas/balance'
billing_address:
$ref: '#/components/schemas/billing_address'
payments:
$ref: '#/components/schemas/payments'
vendor_credits:
$ref: '#/components/schemas/vendor_credits'
created_time:
$ref: '#/components/schemas/created_time'
last_modified_time:
$ref: '#/components/schemas/last_modified_time'
reference_id:
$ref: '#/components/schemas/reference_id'
notes:
$ref: '#/components/schemas/notes'
terms:
$ref: '#/components/schemas/terms'
attachment_name:
$ref: '#/components/schemas/attachment_name'
open_purchaseorders_count:
$ref: '#/components/schemas/open_purchaseorders_count'
gst_treatment:
$ref: '#/components/schemas/gst_treatment'
gst_no:
$ref: '#/components/schemas/gst_no'
source_of_supply:
$ref: '#/components/schemas/source_of_supply'
destination_of_supply:
$ref: '#/components/schemas/destination_of_supply'
is_pre_gst:
$ref: '#/components/schemas/is_pre_gst'
is_reverse_charge_applied:
$ref: '#/components/schemas/is_reverse_charge_applied'
vendor_credit_number:
type: integer
format: int64
example: 67258
payment_number:
description: Number of the payment.
type: string
example: 2
approval-action-response:
type: object
properties:
code:
type: integer
example: 0
readOnly: true
message:
type: string
example: success
readOnly: true
item_total:
description: The total for the items.
type: number
format: double
example: 290
bill_payment_id:
description: Bill payment ID
type: string
example: 4815000000046041
currency_id:
description: Unique ID generated by the server for the currency. This is used as an identifier.
type: string
example: 4815000000000097
description:
description: Description for the line item.
type: string
example: Sample Description
storages-response:
description: Bin/storage locations tracked for the line item. Returned for items with bin tracking enabled.
type: array
items:
type: object
properties:
storage_id:
description: Unique identifier of the bin/storage location.
type: string
example: '6780203000000093226'
storage_name:
description: Display name of the bin/storage location.
type: string
example: Bin A2
in_quantity:
description: Inward quantity recorded against the bin.
type: number
format: float
example: 2
storage_in_id:
description: Unique identifier of the storage entry on the line item.
type: string
example: '6780203000001066795'
serial_numbers:
description: Serial numbers allocated to this bin.
type: array
x-node_available_in:
- Serial with Bin tracked items
items:
type: string
example: TC-IO-09
line_item_id:
description: Unique ID generated by the server for each line item. This is used as an identifier.
type: string
example: 4815000000044897
name:
description: Name of the line item.
type: string
example: Laptop-white/15inch/dell
image_id:
description: Unique ID generated by the server for the item image. This is used an identifier.
type: number
format: double
example: 2077500000000002000
currency_code:
description: Currency code.
type: string
example: USD
tax_total:
description: The total of the Tax.
type: number
format: double
example: 2
mark-as-void-response:
type: object
properties:
code:
type: integer
example: 0
readOnly: true
message:
type: string
example: The bill has been marked as Void.
readOnly: true
billing_address:
description: Customer's billing address. It contains - <code>address</code>, <code>city</code>, <code>state</code>, <code>zip</code>, <code>country</code> and <code>fax</code>.
type: array
items:
type: object
properties:
address:
$ref: '#/components/schemas/address'
city:
$ref: '#/components/schemas/city'
state:
$ref: '#/components/schemas/state'
zip:
$ref: '#/components/schemas/zip'
country:
$ref: '#/components/schemas/country'
fax:
$ref: '#/components/schemas/fax'
gst_no:
description: 15 digit GST identification number of the vendor.
type: string
example: 22AAAAA0000A1Z5
x-node_available_in:
- in
x-node_unavailable_in: []
quantity:
description: Quantity of the Item.
type: number
format: double
example: 5
destination_of_supply:
description: Place where the goods/services are supplied to. (If not given, organisation's home state will be taken)
type: string
example: TN
x-node_available_in:
- in
x-node_unavailable_in: []
payments:
description: Payment details for the Bill.
type: array
items:
type: object
properties:
payment_id:
$ref: '#/components/schemas/payment_id'
bill_id:
$ref: '#/components/schemas/bill_id'
bill_payment_id:
$ref: '#/components/schemas/bill_payment_id'
payment_mode:
$ref: '#/components/schemas/payment_mode'
payment_number:
$ref: '#/components/schemas/payment_number'
description:
$ref: '#/components/schemas/description'
date:
$ref: '#/components/schemas/date'
reference_number:
$ref: '#/components/schemas/reference_number'
exchange_rate:
$ref: '#/components/schemas/exchange_rate'
amount:
$ref: '#/components/schemas/amount'
paid_through_account_id:
$ref: '#/components/schemas/paid_through_account_id'
paid_through_account_name:
$ref: '#/components/schemas/paid_through_account_name'
is_single_bill_payment:
$ref: '#/components/schemas/is_single_bill_payment'
is_pre_gst:
description: Applicable for transactions that fall before july 1, 2017
type: boolean
example: false
x-node_available_in:
- in
x-node_unavailable_in: []
bill_id:
description: Unique ID generated by the server. This is used as identifier.
type: string
example: 4815000000045067
image_name:
description: Name of the image of the line item.
type: string
example: dell.jpg
update-a-bill-request:
required:
- vendor_id
- bill_number
- date
- due_date
- line_items
type: object
properties:
purchaseorder_id:
$ref: '#/components/schemas/purchaseorder_id'
vendor_id:
$ref: '#/components/schemas/vendor_id'
bill_number:
$ref: '#/components/schemas/bill_number'
date:
$ref: '#/components/schemas/date'
due_date:
$ref: '#/components/schemas/due_date'
reference_number:
$ref: '#/components/schemas/reference_number'
currency_id:
$ref: '#/components/schemas/currency_id'
exchange_rate:
$ref: '#/components/schemas/exchange_rate'
is_item_level_tax_calc:
$ref: '#/components/schemas/is_item_level_tax_calc'
notes:
$ref: '#/components/schemas/notes'
terms:
$ref: '#/components/schemas/terms'
is_inclusive_tax:
$ref: '#/components/schemas/is_inclusive_tax'
custom_fields:
$ref: '#/components/schemas/custom_fields'
line_items:
description: The line items for a Bill.
type: array
items:
type: object
properties:
purchaseorder_item_id:
$ref: '#/components/schemas/purchaseorder_item_id'
receive_item_id:
$ref: '#/components/schemas/receive_item_id'
line_item_id:
$ref: '#/components/schemas/line_item_id'
name:
$ref: '#/components/schemas/name'
account_id:
$ref: '#/components/schemas/account_id'
account_name:
$ref: '#/components/schemas/account_name'
description:
$ref: '#/components/schemas/description'
bcy_rate:
$ref: '#/components/schemas/bcy_rate'
rate:
$ref: '#/components/schemas/rate'
quantity:
$ref: '#/components/schemas/quantity'
tax_id:
$ref: '#/components/schemas/tax_id'
tds_tax_id:
$ref: '#/components/schemas/tds_tax_id'
tax_name:
$ref: '#/components/schemas/tax_name'
tax_type:
$ref: '#/components/schemas/tax_type'
tax_percentage:
$ref: '#/components/schemas/tax_percentage'
item_total:
$ref: '#/components/schemas/item_total'
item_order:
$ref: '#/components/schemas/item_order'
unit:
$ref: '#/components/schemas/unit'
image_id:
$ref: '#/components/schemas/image_id'
image_name:
$ref: '#/components/schemas/image_name'
image_type:
$ref: '#/components/schemas/image_type'
reverse_charge_tax_id:
$ref: '#/components/schemas/reverse_charge_tax_id'
hsn_or_sac:
$ref: '#/components/schemas/hsn_or_sac'
tax_exemption_code:
$ref: '#/components/schemas/tax_exemption_code'
location_id:
$ref: '#/components/schemas/location_id'
tax_exemption_id:
$ref: '#/components/schemas/tax_exemption_id'
serial_numbers:
$ref: '#/components/schemas/serial_numbers'
batches:
$ref: '#/components/schemas/batches-update'
storages:
$ref: '#/components/schemas/storages-update'
item_custom_fields:
$ref: '#/components/schemas/item_custom_fields'
location_id:
$ref: '#/components/schemas/location_id'
gst_treatment:
$ref: '#/components/schemas/gst_treatment'
tax_treatment:
$ref: '#/components/schemas/tax_treatment'
gst_no:
$ref: '#/components/schemas/gst_no'
source_of_supply:
$ref: '#/components/schemas/source_of_supply'
destination_of_supply:
$ref: '#/components/schemas/destination_of_supply'
is_pre_gst:
$ref: '#/components/schemas/is_pre_gst'
is_reverse_charge_applied:
$ref: '#/components/schemas/is_reverse_charge_applied'
rate:
description: Item's Puchase Price.
type: number
format: double
example: 6
list-all-bills-response:
type: object
properties:
code:
type: integer
example: 0
readOnly: true
message:
type: string
example: success
readOnly: true
bills:
type: array
items:
type: object
properties:
bill_id:
$ref: '#/components/schemas/bill_id'
purchaseorder_id:
$ref: '#/components/schemas/purchaseorder_id'
vendor_id:
$ref: '#/components/schemas/vendor_id'
vendor_name:
$ref: '#/components/schemas/vendor_name'
unused_credits_payable_amount:
$ref: '#/components/schemas/unused_credits_payable_amount'
status:
$ref: '#/components/schemas/status'
bill_number:
$ref: '#/components/schemas/bill_number'
date:
$ref: '#/components/schemas/date'
due_date:
$ref: '#/components/schemas/due_date'
reference_number:
$ref: '#/components/schemas/reference_number'
due_by_days:
$ref: '#/components/schemas/due_by_days'
currency_id:
$ref: '#/components/schemas/currency_id'
currency_code:
$ref: '#/components/schemas/currency_code'
currency_symbol:
$ref: '#/components/schemas/currency_symbol'
price_precision:
$ref: '#/components/schemas/price_precision'
exchange_rate:
$ref: '#/components/schemas/exchange_rate'
is_item_level_tax_calc:
$ref: '#/components/schemas/is_item_level_tax_calc'
custom_fields:
$ref: '#/components/schemas/custom_fields'
line_items:
$ref: '#/components/schemas/line_items'
location_id:
$ref: '#/components/schemas/location_id'
location_name:
$ref
# --- truncated at 32 KB (63 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/zoho-inventory/refs/heads/main/openapi/zoho-inventory-bills-api-openapi.yml