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": "433546158700234574",
    "administration_id": 123,
    "type": "InvoiceWorkflow",
    "name": "Standaard",
    "default": true,
    "currency": "EUR",
    "language": "nl",
    "active": true,
    "prices_are_incl_tax": false,
    "created_at": "2024-09-30T07:37:38.219Z",
    "updated_at": "2024-09-30T07:37:38.219Z"
  },
  {
    "id": "433546158810335060",
    "administration_id": 123,
    "type": "EstimateWorkflow",
    "name": "Standaard",
    "default": true,
    "currency": "EUR",
    "language": "nl",
    "active": true,
    "prices_are_incl_tax": false,
    "created_at": "2024-09-30T07:37:38.324Z",
    "updated_at": "2024-09-30T07:37:38.324Z"
  }
]