LeadsyGroup
  1. Companies
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
    • Companies
      • Remove a company avatar
        DELETE
      • Upload a company avatar
        PUT
      • Create company
        POST
      • List companies
        GET
      • Get an specific company
        GET
    • 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
      • Import leads for a company
    • Campaigns
      • List campaigns for a company
      • Get campaign by id
    • Questions
      • Bulk update question options for a campaign
      • List questions for a campaign
      • Get question for ID
    • Cycles
      • Modify cycles flag in company
      • Create a cycle for company
    • Membership
      • Attach membership to company
      • Cancel current subscription
    • Company Users
      • Get users from an specific company
  1. Companies

Get an specific company

GET
/api/v1/companies/{id}

Request

Path Params

Header Params

Responses

🟢200
application/json
Company found successfully
Body

🟠401
🟠403
🟠404
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/companies/' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
    "company": {
        "id": 0,
        "name": "string",
        "default": true,
        "parent_company_id": 0,
        "avatar_route": "string",
        "active_cycle": [
            {
                "id": 0,
                "title": "string",
                "start_date": "2019-08-24",
                "end_date": "2019-08-24",
                "default": true
            }
        ],
        "users": [
            {
                "id": 0,
                "email": "user@example.com",
                "first_name": "string",
                "last_name": "string",
                "user_accesses": [
                    {
                        "id": 0,
                        "access_id": 0,
                        "company_id": 0,
                        "access_name": "string"
                    }
                ]
            }
        ]
    }
}
Modified at 2026-02-17 21:54:09
Previous
List companies
Next
Mark as completed the onboarding
Built with