Skip to main content

Get List

GET 

/api/leads

API Endpoint: Retrieve Leads

Method: GET
URL: https://app.udyogx.in/api/leads

Purpose

This endpoint is used to retrieve a list of leads from the UdyogX application. It allows users to access lead information that can be utilized for further processing or analysis.

Request Parameters

This endpoint does not require any input parameters. It is a simple GET request that fetches the leads available in the system.

Response Structure

The response from the server will typically include a JSON object containing an array of leads. Each lead object may contain the following fields:

  • id: Unique identifier for the lead.
  • name: Name of the lead.
  • email: Email address of the lead.
  • phone: Contact number of the lead.
  • status: Current status of the lead (e.g., new, contacted, converted).
  • created_at: Timestamp indicating when the lead was created.
  • updated_at: Timestamp indicating when the lead was last updated.

The exact structure may vary based on the implementation, but it will generally follow this format to ensure that users can easily parse and utilize the lead data retrieved from the endpoint.

Responses