Users

Get all users
GET /api/getallusers

Returns data about all users within the account

Header parameters
Required Parameters Type Description
api_key  String   
Required
 Api key of the account
api_pwd  String   
Required
 Api password of the account
            
Example GET URL:
https://ezzycrm.com/api/getallusers

Example Response:
{
"isSuccess": "true",
"data": [ 
    {
    "UserId": 872,
    "FirstName": "John",
    "LastName": "Roy",
    "EmailAddress": "johnroy@Gmail.com",
    "IsActive": "1",
    },
    {
    "UserId": 873,
    "FirstName": "Ronnie",
    "LastName": "Dsouza",
    "EmailAddress": "ronniedsouza@gmail.com",
    "IsActive": "1",
    }
],
"error": []
}


Pipelines

Get all pipelines
GET /api/getallpipelines

Returns data about all pipelines

Header parameters
Required Parameters Type Description
api_key  String   
Required
 Api key of the account
api_pwd  String   
Required
 Api password of the account
            
Example GET URL:
https://ezzycrm.com/api/getallpipelines

Example Response:
{
"isSuccess": "true",
"data": [ 
    {
    "PipelineId": 764,
    "PipeLineName": "Pipeline"
    },
    {
    "PipelineId": 765,
    "PipeLineName": "Pipeline Two"
    }
],
"error": []
}


Lost Reason

Get all lost reasons
GET /api/getalllostreasons

Returns data about all lost reasons

Header parameters
Required Parameters Type Description
api_key  String   
Required
 Api key of the account
api_pwd  String   
Required
 Api password of the account
            
Example GET URL:
https://ezzycrm.com/api/getalllostreasons

Example Response:
{
"isSuccess": "true",
"data": [ 
    {
    "LostReasonId": 650691,
    "LostReasonName": "REASON 1"
    },
    {
    "LostReasonId": 650692,
    "LostReasonName": "REASON 2"
    },
    {
    "LostReasonId": 650693,
    "LostReasonName": "REASON 3"
    },
    {
    "LostReasonId": 650694,
    "LostReasonName": "REASON 4"
    }
],
"error": []
}


Stages

Get all stages
GET /api/getallstages

Returns data about all stages

Header parameters
Required Parameters Type Description
api_key  String   
Required
 Api key of the account
api_pwd  String   
Required
 Api password of the account
            
Example GET URL:
https://ezzycrm.com/api/getallstages

Example Response:
{
"isSuccess": "true",
"data": [ 
    {
    "PipelineId": 764,
    "PipeLineName": "Pipeline"
    "data": [ 
        {
        "StageCode": "LIN",
        "StageName": "Lead In"
        },
        {
        "StageCode": "FUP",
        "StageName": "Follow Up"
        },
        {
        "StageCode": "POM",
        "StageName": "Potential Meetings"
        },
        {
        "StageCode": "MTD",
        "StageName": "Meetings Done"
        }
    ]
    },
    {
    "PipelineId": 765,
    "PipeLineName": "Pipeline Two"
    "data": [ 
        {
        "StageCode": "LIN",
        "StageName": "Lead In"
        },
        {
        "StageCode": "FUP",
        "StageName": "Follow Up"
        },
        {
        "StageCode": "POM",
        "StageName": "Potential Meetings"
        },
        {
        "StageCode": "MTD",
        "StageName": "Meetings Done"
        }
    ]
    }
],
"error": []
}


Leads

Get all leads
GET /api/getallleads

Returns all leads

Header parameters
Required Parameters Type Description
api_key  String   
Required
 Api key of the account
api_pwd  String   
Required
 Api password of the account
Query parameters
Required Parameters Type Description
PipelineId  Number   
Required
 Only leads within the given pipeline will be returned
UserId  Number  If supplied, only leads matching the given user will be returned
DEFAULT 0
FromDate  Date   
Required
 Only leads within the given date range will be returned (MM/DD/YYYY)
ToDate  Date   
Required
 Only leads within the given date range will be returned(MM/DD/YYYY)
            
Example GET URL:
https://ezzycrm.com/api/getallleads?
UserId=872&PipelineId=324

Example Response:
{
"isSuccess": "true",
"data": [ 
{
"DealId": 30489,
"FirstName": "John",
"LastName": "Roy",
"JobTitle": "",
"EmailAddress": "Johnroy@ezzycrm.com",
"Phone": "0123456789",
"PhoneType": "Work",
"ContactRemark": "",
"Organization": "Organization",
"Address1": "Add1",
"Address2": "Add2",
"Country": "India",
"State": "Maharashtra",
"City": "Mumbai",
"ZipCode": "400084",
"Industry": "Software",
"DealTtile": "Deal title",
"LeadSource": "API",
"DealValue": "415.00",
"Currency": "INR",
"ExpectedCloseDate": "2022-06-10",
"LeadStatus": "Won",
"StageName": "Follow Up",
"PipeLineName": "Pipeline",
"CreatedOn": "9/6/2021 12:39:13 PM",
"Note": [ 
    "Note1",
    "Note2"
    ],
 "CustomeField": [ 
    {
    "FieldName": "CustomeField1",
    "Value":"1"
    },
    {
    "FieldName": "CustomeField2",
    "Value": "2"
    }
    ]
  }
],
"error": []
}


TOP