removeContactIdentity method
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},
);
}