Use the reps method to get info on all or one rep.

API Documentation on Postman

Our API Documentation is now available on Postman which includes code samples, interactive documentation, and so much more.

View FuseDesk API Documentation on Postman...

Depreciation Notice

The below documentation is for our v1 Reps API endpoint.

For a better API experience, you’ll want to use our newer v2 Reps API endpoint.

Request URL:

/api/v1/reps/

Supported Methods: GET

Authorization: See Authorization

Return Codes: See Return Codes

Parameters: none.

Sub-Methods:

  • Info on a specific rep
    /api/v1/reps/1234

Example Queries:

  • Get all reps
    /api/v1/reps
  • Get rep with the Infusionsoft User ID of 1234
    /api/v1/reps/1234

Example JSON Response:

[
    {
        "userid": "1",
        "firstname": "Lorrie",
        "lastname": "Beville",
        "email": "[email protected]",
        "signtaure": "Lorrien [email protected]",
        "username": "lorriebeville",
        "date_lastlogin": "2013-01-23T13:03:45-05:00"
    },
    {
        "userid": "2",
        "firstname": "Kelly",
        "lastname": "Cafferty",
        "email": "[email protected]",
        "signtaure": "Default Usern (Home)[email protected]",
        "username": "kitty113",
        "date_lastlogin": "2012-05-02T11:37:45-04:00"
    },
    {
        "userid": "3",
        "firstname": "Rich",
        "lastname": "Mangum",
        "email": "[email protected]",
        "signtaure": "Default Usern (Home)[email protected]",
        "username": "rmagnum",
        "date_lastlogin": "2012-05-01T18:12:45-04:00"
    },
    {
        "userid": "4",
        "firstname": "Sara",
        "lastname": "Ostrander",
        "email": "[email protected]",
        "signtaure": "Default Usern (Home)[email protected]",
        "username": "goredsox",
        "date_lastlogin": "2012-05-03T12:18:45-04:00"
    }
]