BACKGROUND
I’m creating an app that integrates with Infusionsoft. I’m developing using Laravel PHP.
I NEED
to prepare the CRUD functionalities with the respective objects (Contacts, Companies, …)
But I wasn’t able to implement the Delete operation for Companies and Opportunities using the Rest API (and the documentation doesn’t say anything about deleting too)
I TRIED
to force delete using Guzzlehttp:
Sent DELETE HTTP to Companies with this URL. But this returns 404 not found
https://api.infusionsoft.com/crm/rest/v1/companies/25?access_token=xxxxxxxxxxxxxxxxxxxxxxxx
Sent DELETE HTTP to Opportunities with this URL. But this returns 405 method not allowed
https://api.infusionsoft.com/crm/rest/v1/opportunities/1?access_token=xxxxxxxxxxxxxxxxxxxxxxxx
QUESTION
Is there some way that our app can delete companies and opportunities? I know that we can manually delete using the Keap site. But it would be great if the app user wouldn’t need to manually do it himself.