Get data of cancelled records with API

Hi,

is it possible to retrieve data of cancelled records (logically cancelled) with API calls?

By default cancelled records are not returned.

Thanks

Omar

  • Hello Omar, 

    Can you clarify what you mean by "cancelled records"? 
    If what you are looking for is retrieving deleted records  (deleted=1) using the API you can do that by passing the following argument on the filter API endpoint:

    Fullscreen
    1
    2
    3
    {
    "deleted":"true"
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX


    This will include the deleted records in the API response. 

    You can check more information here.

    Let me know if this is what you are looking for. 

    André 

  • Yes, thanks. That's it!