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": "440890270623466619",
    "administration_id": 123,
    "type": "EstimateWorkflow",
    "name": "Standaard",
    "default": true,
    "currency": "EUR",
    "language": "nl",
    "active": true,
    "prices_are_incl_tax": false,
    "created_at": "2024-12-20T09:09:09.168Z",
    "updated_at": "2024-12-20T09:09:09.168Z"
  },
  {
    "id": "440890270576280694",
    "administration_id": 123,
    "type": "InvoiceWorkflow",
    "name": "Standaard",
    "default": true,
    "currency": "EUR",
    "language": "nl",
    "active": true,
    "prices_are_incl_tax": false,
    "created_at": "2024-12-20T09:09:09.123Z",
    "updated_at": "2024-12-20T09:09:09.123Z"
  }
]