LeadsyGroup
  1. Stages
LeadsyGroup
  • API V1
    • Users
      • Remove a user avatar
      • Upload a user avatar
      • Create a user
      • Validate JWT
      • Find a user by email
      • Show all users
      • Login into the application
      • Reset user password
      • Show a user
      • Update a user
    • Stages
      • List stages
        GET
    • Companies
      • Remove a company avatar
      • Upload a company avatar
      • Create company
      • List companies
      • Get an specific company
    • User Onboarding
      • Mark as completed the onboarding
      • Approve T&C
    • User Company Relation
      • Create user_accesses for a user
      • Show user_accesses for a user
      • Remove an specific user_access
      • Update user_accesses for a user
    • Accesses
      • List all available accesses
      • List access by id
    • Memberships
      • List available memberships
      • Info of a membership
    • Legal Terms
      • Current available for signature
      • Get legal terms per id
    • Invitations
      • Creates user invitation
      • Get pending invitations by email
    • Import
      • List of ImportFiles
      • Check status of an import
  1. Stages

List stages

GET
/api/v1/stages

Request

Header Params

Responses

🟢200
application/json
List of Stages for Lead
Body

🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/stages' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
    "stages": [
        {
            "id": 0,
            "label": "string",
            "hex_color": "string",
            "translated_labels": [
                {
                    "es": "string",
                    "en": "string"
                }
            ],
            "sub_stages": [
                {
                    "id": 0,
                    "label": "string",
                    "hex_color": "string",
                    "translated_labels": [
                        {
                            "es": "string",
                            "en": "string"
                        }
                    ]
                }
            ]
        }
    ]
}
Modified at 2026-02-17 19:55:10
Previous
Update a user
Next
Remove a company avatar
Built with