Contacts

Contacts are all the individual persons or organizations you are doing business with. Use the contacts API to list, create or update contacts within your Lancerkit account.

API endpoints

List contacts

GET https://api.lancerkit.com/contacts

List all the contacts on your account

Query Parameters

{
    // Response
}

Get a contact

GET https://api.lancerkit.com/contacts/:id

Get a specific contact from your account

Path Parameters

{
    // Response
}

Delete contacts

DELETE https://api.lancerkit.com/contacts

Delete some contacts from your account

Request Body

{
    // Response
}

Edit a contact

POST https://api.lancerkit.com/contacts/:id

Edit an existing contact

Path Parameters

Request Body

{
    // Response
}

Create a contact

POST https://api.lancerkit.com/contacts/new

Create a new contact

Request Body

{
    // Response
}

Last updated