# Last proof payments changes Returns the list of proof payments, which were changed. The Endpoint is intended to determine the changes after you have loaded the list of proof payments and you need to know the changes. The guaranteed history of changes is 30 days. Each proof payment is only given in the listing with its last change. For example, if the proof payment was modified and then deleted, the listing will only show information about its deletion. Can be filtered by changeType = edit/delete parameter. Creation is considered as action. So, when there is a new item created, it will be displayed like action. Endpoint supports Paging Endpoint: GET /api/proof-payments/changes Version: 1.0.0 Security: shoptetAccessToken, shoptetPrivateApiToken ## Query parameters: - `from` (string, required) DateTime from which up to the present we are interested in the changes. + in the time zone Example: "2018-01-01T01:01:01+02:00" - `changeType` (string) Returning only edit or delete type changed records Example: "edit" ## Header parameters: - `Content-Type` (string, required) ## Response 200 fields (application/json): - `data` (object, required) - `data.changes` (array, required) - `data.changes.changeType` (string, required) type of event that happened with the document. Possible values are following: , , . - `data.changes.changeTime` (string, required) date and time when the event happened. ISO 8601 format ("2017-12-12T22:08:01+0100"). - `data.changes.code` (string, required) identifier (number) of the document, which can be used to query about the details. - `data.paginator` (object, required) - `data.paginator.totalCount` (number, required) total number of available records - `data.paginator.page` (number, required) current page - `data.paginator.pageCount` (number, required) total number of available pages - `data.paginator.itemsOnPage` (number, required) number of currently returned records - `data.paginator.itemsPerPage` (number, required) required number of records per page - `errors` (array,null, required) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced