Get List
GET/api/saleservices
API Endpoint: Get Sales Services
Method: GET
URL: https://app.udyogx.in/api/saleservices
Description
This endpoint retrieves a list of sales services available in the application. It is a straightforward GET request that does not require any parameters to be sent in the request body.
Request Parameters
No request parameters are required for this endpoint.
Expected Response
The response will be in JSON format, containing an array of sales services. Each service object may include various attributes related to the sales services offered, such as service ID, name, description, and other relevant details.
Example Response Structure
{
"services": [
{
"id": "string",
"name": "string",
"description": "string",
...
}
]
}
This endpoint is useful for clients looking to fetch available sales services for further processing or display.
Responses
- 200