DELETE api/v2/customers/delete/{id}


Delete a customer.
Delete flag is set and the customer becomes unavailable in the F8 system. The customer is removed from the database when the regular gdpr routine is run

If success, http status code 200 (Ok) is returned.
If delete is not allowed http status code 406 (NotAcceptable) is returned.
if a server error occurs, http status code 500 (InternalServerError) is returned. the response body contains more details.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

F8 application customer id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

WebApiV2ResponseMessage
NameDescriptionTypeAdditional information
code

string

None.

message

string

None.

detail

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "message": "sample string 2",
  "detail": "sample string 3"
}