Delete a contact

delete

/services/rest/connect/v1.4/contacts/{id}

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : No content
Type: null
Title: No content
No content returned on delete
Back to Top

Examples

Use DELETE with the following syntax to delete a contact:

https://your_site_interface/services/rest/connect/version/contacts/contact_id

Request URI example

https://mysite.example.com/services/rest/connect/v1.4/contacts/9

Response example

The status 200 OK is returned. Then getting the list of contact records returns the following:

...
{
    "rel": "canonical",
    "href": "https://mysite.example.com/services/rest/connect/v1.4/contacts/8"
    },
{
    "rel": "canonical",
    "href": "https://mysite.example.com/services/rest/connect/v1.4/contacts/10"
    },
...

Note:

Contact 9 no longer exists.
Back to Top