removeContactIdentity method

Future<Object?> removeContactIdentity({
  1. required Object contactId,
  2. required Object authId,
  3. Map<String, Object?>? query,
  4. Object? body,
  5. Map<String, String>? headers,
})

DELETE /{version}/membership/users/{contactId}/identities/{authId}

Implementation

Future<Object?> removeContactIdentity(
    {required Object contactId,
    required Object authId,
    Map<String, Object?>? query,
    Object? body,
    Map<String, String>? headers}) {
  return transport.send(
    route: '/{version}/membership/users/{contactId}/identities/{authId}',
    method: 'DELETE',
    query: query,
    body: body,
    headers: headers,
    pathParams: <String, Object?>{'contactId': contactId, 'authId': authId},
  );
}