Workflows
Fetch all workflows
Fetch all the workflows in the current company.
GET
/
transform
/
v1
/
workflows
Authorization
curl --request GET \
--url https://api.invopop.com/transform/v1/workflows
{
"created_at": "<string>",
"limit": 123,
"list": [
"<any>"
],
"next_created_at": "<string>"
}
Response
200 - application/json
created_at
string
First or queried timestamp when the first entry in the page was created.
limit
integer
Maximum number of objects returned in a page.
list
any[] | null
List of objects.
next_created_at
string
Timestamp that indicates the start of the next page of results, if any.
curl --request GET \
--url https://api.invopop.com/transform/v1/workflows
{
"created_at": "<string>",
"limit": 123,
"list": [
"<any>"
],
"next_created_at": "<string>"
}