Deleting Contacts
HTTP Request Line |
DELETE /ffws/v1/contacts/USERNAME/id HTTP/1.1 |
|
HTTP Response Status Codes |
200 OK |
Deleted. |
403 Forbidden |
Authenticated user does not have permission to change data. |
|
404 Not Found |
Contact not found. |
Example
1 2 3 4 5 6 7 8 9 10 | DELETE /ffws/v1/contacts/admin/ 6 HTTP/1.1 content-type: application/xml authorization: Basic YWRtaW46YWRtaW4= ----------------------------------- HTTP/1.1 200 OK content-type: application/xml <? xml version=”1.0” encoding=”UTF-8”?> < response > < message >Deleted</ message > </ response > |