LeadsyGroup
  1. Membership
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
      • 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
      • Import leads for a company
      • List of ImportFiles
      • Check status of an import
    • 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
        POST
      • Cancel current subscription
        POST
    • Company Users
      • Get users from an specific company
  1. Membership

Attach membership to company

POST
/api/v1/companies/{company_id}/membership

Request

Path Params

Query Params

Header Params

Responses

🟢201
application/json
Membership attached successfully
Body

🟠401
🟠403
🟠404
🟠422
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/companies//membership?membership_id' \
--header 'Authorization;'
Response Response Example
201 - Example 1
{
    "company": {
        "id": 0,
        "name": "string",
        "show_leads": true,
        "converted_leads": 0,
        "current_cycle": {},
        "payment_day": 0,
        "avatar_route": "string",
        "creation_date": "string",
        "membership_started_at": "string",
        "membership_ended_at": "string",
        "company_integrations": [
            "string"
        ],
        "active_cycle": {},
        "membership": {},
        "current_subscription": {}
    }
}
Modified at 2026-02-17 22:16:09
Previous
Create a cycle for company
Next
Cancel current subscription
Built with