Time entries

List all time entries

Returns a paginated list of all time entries in the administration.

The filter argument allows you to filter the list of time entries. Filters are a combination of keys and values, separated by a comma: period:this_year,state:all. The available options for filtering are:

Filter Type Default Description
state String all all, open or non_billable
period String this_year This can either be the description of a period (this_month, prev_month, next_month, this_quarter, prev_quarter, next_quarter, this_year, prev_year, next_year) or a custom period (201301..201302, 20130101..20130131)
contact_id Integer   Select time entries belonging to a certain contact
include_nil_contacts Boolean false Whether to include time entries that have no assigned contact
include_active Boolean false Whether to include active time entries i.e. time entries without ended_at
project_id Integer   Select time entries belonging to a certain project
user_id Integer   Select time entries belonging to a certain user
day Date   Select time entries on a specific date

You can filter by multiple states at the same time as well. To do this, separate the state values by a pipe: state:open|non_billable.

Parameters

Parameter Type Description
filter String
query String

Allows filtering by time entry description.

Example: returns all time entries of an administration

Request

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

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "416087695906834277",
    "administration_id": 123,
    "contact_id": "416087695871182689",
    "project_id": "416087695885862755",
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T15:42:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": true,
    "created_at": "2024-03-21T14:42:50.679Z",
    "updated_at": "2024-03-21T14:42:50.679Z",
    "contact": {
      "id": "416087695871182689",
      "firstname": "",
      "lastname": "",
      "company_name": "Foobar Holding B.V."
    },
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": {
      "id": "416087695885862755",
      "name": "My project name",
      "state": "active"
    },
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:50.682Z",
        "updated_at": "2024-03-21T14:42:50.682Z"
      }
    ],
    "notes": [

    ]
  },
  {
    "id": "416087695920465767",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": false,
    "created_at": "2024-03-21T14:42:50.692Z",
    "updated_at": "2024-03-21T14:42:50.692Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:50.695Z",
        "updated_at": "2024-03-21T14:42:50.695Z"
      }
    ],
    "notes": [

    ]
  },
  {
    "id": "416087695933048681",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": true,
    "created_at": "2024-03-21T14:42:50.704Z",
    "updated_at": "2024-03-21T14:42:50.704Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:50.707Z",
        "updated_at": "2024-03-21T14:42:50.707Z"
      }
    ],
    "notes": [

    ]
  }
]
      

Example: returns all time entries filtered on period

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/time_entries.json?filter=period%3Athis_month
    

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "416087696108160881",
    "administration_id": 123,
    "contact_id": "416087696073557869",
    "project_id": "416087696089286511",
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T15:42:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": true,
    "created_at": "2024-03-21T14:42:50.871Z",
    "updated_at": "2024-03-21T14:42:50.871Z",
    "contact": {
      "id": "416087696073557869",
      "firstname": "",
      "lastname": "",
      "company_name": "Foobar Holding B.V."
    },
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": {
      "id": "416087696089286511",
      "name": "My project name",
      "state": "active"
    },
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:50.874Z",
        "updated_at": "2024-03-21T14:42:50.874Z"
      }
    ],
    "notes": [

    ]
  },
  {
    "id": "416087696132278131",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": false,
    "created_at": "2024-03-21T14:42:50.893Z",
    "updated_at": "2024-03-21T14:42:50.893Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:50.898Z",
        "updated_at": "2024-03-21T14:42:50.898Z"
      }
    ],
    "notes": [

    ]
  },
  {
    "id": "416087696148006773",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": true,
    "created_at": "2024-03-21T14:42:50.909Z",
    "updated_at": "2024-03-21T14:42:50.909Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:50.912Z",
        "updated_at": "2024-03-21T14:42:50.912Z"
      }
    ],
    "notes": [

    ]
  }
]
      

Example: returns all time entries filtered on search query

Request

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

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "416087699682756485",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Custom description",
    "paused_duration": 0,
    "billable": true,
    "created_at": "2024-03-21T14:42:54.280Z",
    "updated_at": "2024-03-21T14:42:54.280Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:54.283Z",
        "updated_at": "2024-03-21T14:42:54.283Z"
      }
    ],
    "notes": [

    ]
  }
]
      

Example: returns all time entries filtered on state

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/time_entries.json?filter=state%3Anon_billable
    

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "416087699872548751",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": false,
    "created_at": "2024-03-21T14:42:54.461Z",
    "updated_at": "2024-03-21T14:42:54.461Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:54.464Z",
        "updated_at": "2024-03-21T14:42:54.464Z"
      }
    ],
    "notes": [

    ]
  }
]
      

Example: returns paginated time entries on page 1

Request

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

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "416087700018300825",
    "administration_id": 123,
    "contact_id": "416087699983697813",
    "project_id": "416087699999426455",
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T15:42:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": true,
    "created_at": "2024-03-21T14:42:54.600Z",
    "updated_at": "2024-03-21T14:42:54.600Z",
    "contact": {
      "id": "416087699983697813",
      "firstname": "",
      "lastname": "",
      "company_name": "Foobar Holding B.V."
    },
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": {
      "id": "416087699999426455",
      "name": "My project name",
      "state": "active"
    },
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:54.603Z",
        "updated_at": "2024-03-21T14:42:54.603Z"
      }
    ],
    "notes": [

    ]
  }
]
      

Example: returns paginated time entries on page 2

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/time_entries.json?page=2&per_page=1
    

Response

        
          
          Status: 200 OK
        
      
[
  {
    "id": "416087700226967463",
    "administration_id": 123,
    "contact_id": null,
    "project_id": null,
    "user_id": 17110319469471,
    "started_at": "2024-03-21T14:42:00.000Z",
    "ended_at": "2024-03-21T14:43:00.000Z",
    "description": "Test",
    "paused_duration": 0,
    "billable": false,
    "created_at": "2024-03-21T14:42:54.799Z",
    "updated_at": "2024-03-21T14:42:54.799Z",
    "contact": null,
    "detail": null,
    "user": {
      "id": 17110319469471,
      "name": "Moneybird",
      "created_at": "2024-03-21T14:39:06.320Z",
      "updated_at": "2024-03-21T14:39:06.561Z"
    },
    "project": null,
    "events": [
      {
        "administration_id": 123,
        "user_id": 17110319469471,
        "action": "time_entry_created",
        "link_entity_id": null,
        "link_entity_type": null,
        "data": {
        },
        "created_at": "2024-03-21T14:42:54.801Z",
        "updated_at": "2024-03-21T14:42:54.801Z"
      }
    ],
    "notes": [

    ]
  }
]
      

Example: returns an error when too many time entries are requested

Request

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

Response

        
          
          Status: 400 Bad Request
        
      
{
  "error": "Per Page is too big",
  "symbolic": {
    "per_page": "max"
  }
}
      

Example: returns an error message if filter contact_id is not found

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/time_entries.json?filter=contact_id%3A123
    

Response

        
          
          Status: 404 Not Found
        
      
{
  "error": "record not found",
  "symbolic": {
    "contact_id": "not_found"
  }
}
      

Example: returns an error message if filter user_id is not found

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/time_entries.json?filter=user_id%3A123
    

Response

        
          
          Status: 404 Not Found
        
      
{
  "error": "record not found",
  "symbolic": {
    "user_id": "not_found"
  }
}
      

Get a time entry by id

Returns a time entry in the administration.

Example: returns time entry by given id

Request

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

Response

        
          
          Status: 200 OK
        
      
{
  "id": "416087700852967381",
  "administration_id": 123,
  "contact_id": "416087700820461521",
  "project_id": "416087700834093011",
  "user_id": 17110319469471,
  "started_at": "2024-03-21T14:42:00.000Z",
  "ended_at": "2024-03-21T15:42:00.000Z",
  "description": "Test",
  "paused_duration": 0,
  "billable": true,
  "created_at": "2024-03-21T14:42:55.396Z",
  "updated_at": "2024-03-21T14:42:55.396Z",
  "contact": {
    "id": "416087700820461521",
    "firstname": "",
    "lastname": "",
    "company_name": "Foobar Holding B.V."
  },
  "detail": null,
  "user": {
    "id": 17110319469471,
    "name": "Moneybird",
    "created_at": "2024-03-21T14:39:06.320Z",
    "updated_at": "2024-03-21T14:39:06.561Z"
  },
  "project": {
    "id": "416087700834093011",
    "name": "My project name",
    "state": "active"
  },
  "events": [
    {
      "administration_id": 123,
      "user_id": 17110319469471,
      "action": "time_entry_created",
      "link_entity_id": null,
      "link_entity_type": null,
      "data": {
      },
      "created_at": "2024-03-21T14:42:55.398Z",
      "updated_at": "2024-03-21T14:42:55.398Z"
    }
  ],
  "notes": [

  ]
}
      

Example: returns 404 when time entry does not exist

Request

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

Response

        
          
          Status: 404 Not Found
        
      
{
  "error": "record not found",
  "symbolic": {
    "id": "not_found"
  }
}
      

Create a time entry

Api user needs access to both sales invoices and time entries for this action. started_at and ended_at are rounded down to full minutes when creating a time entry, with a minimum of 1 minute between them.

Parameters

Parameter Type Description
time_entry[user_id] Integer

Required

Should be a valid user id.

time_entry[started_at] Datetime

Required

time_entry[ended_at] Datetime

Required.

time_entry[description] String

Required

time_entry[contact_id] Integer

Should be a valid contact id.

time_entry[project_id] Integer

Should be a valid project id.

time_entry[detail_id] Integer

Should be a valid detail id.

time_entry[billable] Boolean
time_entry[paused_duration] Integer

Total paused duration in seconds, is rounded down to full minutes.

user_agent String

Example: create a basic time entry

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XPOST \
  -d '{"time_entry":{"started_at":"2024-03-21 14:42:00 UTC","ended_at":"2024-03-21 15:42:00 UTC","description":"Test","contact_id":416087701108819937,"project_id":416087701122451427,"user_id":17110319469471,"billable":false}}' \
  https://moneybird.com/api/v2/123/time_entries
    

Response

        
          
          Status: 201 Created
        
      
{
  "id": "416087701176977381",
  "administration_id": 123,
  "contact_id": "416087701108819937",
  "project_id": "416087701122451427",
  "user_id": 17110319469471,
  "started_at": "2024-03-21T14:42:00.000Z",
  "ended_at": "2024-03-21T15:42:00.000Z",
  "description": "Test",
  "paused_duration": 0,
  "billable": false,
  "created_at": "2024-03-21T14:42:55.705Z",
  "updated_at": "2024-03-21T14:42:55.705Z",
  "contact": {
    "id": "416087701108819937",
    "firstname": "",
    "lastname": "",
    "company_name": "Foobar Holding B.V."
  },
  "detail": null,
  "user": {
    "id": 17110319469471,
    "name": "Moneybird",
    "created_at": "2024-03-21T14:39:06.320Z",
    "updated_at": "2024-03-21T14:39:06.561Z"
  },
  "project": {
    "id": "416087701122451427",
    "name": "My project name",
    "state": "active"
  },
  "events": [
    {
      "administration_id": 123,
      "user_id": 17110319469471,
      "action": "time_entry_created",
      "link_entity_id": null,
      "link_entity_type": null,
      "data": {
      },
      "created_at": "2024-03-21T14:42:55.708Z",
      "updated_at": "2024-03-21T14:42:55.708Z"
    }
  ],
  "notes": [

  ]
}
      

Example: returns an error when invalid details are provided

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XPOST \
  -d '{"time_entry":{"started_at":"2024-03-21 14:42:00 UTC","ended_at":"2024-03-21 13:42:00 UTC","user_id":17110319469471,"billable":false}}' \
  https://moneybird.com/api/v2/123/time_entries
    

Response

        
          
          Status: 422 Unprocessable Entity
        
      
{
  "error": {
    "ended_at": [
      "cannot be before the start time"
    ],
    "description": [
      "can't be blank"
    ]
  }
}
      

Update a time entry

When updating a time entry, provide only the attributes you want to update. The other attributes will not be changed. started_at and ended_at are rounded down to full minutes when updating a time entry, with a minimum of 1 minute between them.

Parameters

Parameter Type Description
time_entry[started_at] Datetime
time_entry[ended_at] Datetime

Required.

time_entry[paused_duration] Integer

Total paused duration in seconds, is rounded down to full minutes.

time_entry[contact_id] Integer

Should be a valid contact id.

time_entry[project_id] Integer

Should be a valid project id.

time_entry[description] String
time_entry[billable] Boolean

Example: updating the time entry description

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XPATCH \
  -d '{"time_entry":{"description":"Updated description"}}' \
  https://moneybird.com/api/v2/123/time_entries/416087701356283885
    

Response

        
          
          Status: 200 OK
        
      
{
  "id": "416087701356283885",
  "administration_id": 123,
  "contact_id": "416087701321680873",
  "project_id": "416087701335312363",
  "user_id": 17110319469471,
  "started_at": "2024-03-21T14:42:00.000Z",
  "ended_at": "2024-03-21T15:42:00.000Z",
  "description": "Updated description",
  "paused_duration": 0,
  "billable": true,
  "created_at": "2024-03-21T14:42:55.876Z",
  "updated_at": "2024-03-21T14:42:55.924Z",
  "contact": {
    "id": "416087701321680873",
    "firstname": "",
    "lastname": "",
    "company_name": "Foobar Holding B.V."
  },
  "detail": null,
  "user": {
    "id": 17110319469471,
    "name": "Moneybird",
    "created_at": "2024-03-21T14:39:06.320Z",
    "updated_at": "2024-03-21T14:39:06.561Z"
  },
  "project": {
    "id": "416087701335312363",
    "name": "My project name",
    "state": "active"
  },
  "events": [
    {
      "administration_id": 123,
      "user_id": 17110319469471,
      "action": "time_entry_created",
      "link_entity_id": null,
      "link_entity_type": null,
      "data": {
      },
      "created_at": "2024-03-21T14:42:55.878Z",
      "updated_at": "2024-03-21T14:42:55.878Z"
    },
    {
      "administration_id": 123,
      "user_id": 17110319469471,
      "action": "time_entry_updated",
      "link_entity_id": null,
      "link_entity_type": null,
      "data": {
      },
      "created_at": "2024-03-21T14:42:55.927Z",
      "updated_at": "2024-03-21T14:42:55.927Z"
    }
  ],
  "notes": [

  ]
}
      

Delete a time entry

Example: deletes given time entry

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XDELETE \
  -d '{}' \
  https://moneybird.com/api/v2/123/time_entries/416087701523007478.json
    

Response

Adds note to entity

Parameters

Parameter Type Description
note[note] String

Required. Text for the note or to-do.

note[todo] Boolean

If true the note is a to-do.

note[assignee_id] Integer

Assign to-do to user. Should be a valid user id. If assignee_id is provided the note will be a to-do.

Example: create a note

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XPOST \
  -d '{"note":{"note":"Text of the note","assignee_id":416087701617379321,"todo":true}}' \
  https://moneybird.com/api/v2/123/time_entries/416087701674001409/notes.json
    

Response

        
          
          Status: 201 Created
        
      
{
  "id": "416087701725381635",
  "administration_id": 123,
  "entity_id": "416087701674001409",
  "entity_type": "TimeEntry",
  "user_id": 17110319469471,
  "assignee_id": "416087701617379321",
  "todo": true,
  "note": "Text of the note",
  "completed_at": null,
  "completed_by_id": null,
  "todo_type": null,
  "data": {
  },
  "created_at": "2024-03-21T14:42:56.227Z",
  "updated_at": "2024-03-21T14:42:56.227Z"
}
      

Destroys note from entity

Example: destroy a note

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XDELETE \
  -d '{}' \
  https://moneybird.com/api/v2/123/time_entries/416087701835482123/notes/416087701845967885.json
    

Response