Accessing SeedLeaf API
Print
Modified on: Wed, 7 Dec, 2022 at 9:45 AM
We don't have an official API, but you're welcome to use the same API that our front-end uses.
Use cookies for authentication.
Create a Session
Request Body:
{
"email": "email",
"password": "password"
}
Returns:
A secure, http-only session cookie.
Get Tasks
Request parameters:
date: "2022-08-02"
period: "week" or "day"
Returns:
{
"data" : [
{
... tasks
}
}
}
Get deliveries
Request parameters:date: "2022-08-02"
Returns:
{ "data" : [ { ... deliveries
}
}
}
We hope this helps gets you started. If you need more details about the API, we suggest using the Chrome or FireFox developer tools to inspect the network requests to the API. Just keep in mind that the API will change from time to time in ways that might break your integrations.
Did you find it helpful?
Yes
No
Send feedback Sorry we couldn't be helpful. Help us improve this article with your feedback.