Workflows

Retrieve available workflows

Example: returns all Workflows of an administration

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/workflows.json?
    

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "426664036392764982",
    "administration_id": 123,
    "type": "InvoiceWorkflow",
    "name": "Standaard",
    "default": true,
    "currency": "EUR",
    "language": "nl",
    "active": true,
    "prices_are_incl_tax": false,
    "created_at": "2024-07-16T08:29:14.963Z",
    "updated_at": "2024-07-16T08:29:14.963Z"
  },
  {
    "id": "426664036497622588",
    "administration_id": 123,
    "type": "EstimateWorkflow",
    "name": "Standaard",
    "default": true,
    "currency": "EUR",
    "language": "nl",
    "active": true,
    "prices_are_incl_tax": false,
    "created_at": "2024-07-16T08:29:15.062Z",
    "updated_at": "2024-07-16T08:29:15.062Z"
  }
]