comAtprotoIdentityRefreshIdentity function
Request that the server re-resolve an identity (DID and handle). The server may ignore this request, or require authentication, depending on the role, implementation, and policy of the server.
Implementation
Future<XRPCResponse<IdentityInfo>> comAtprotoIdentityRefreshIdentity({
required String identifier,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.comAtprotoIdentityRefreshIdentity,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'identifier': identifier},
to: const IdentityInfoConverter().fromJson,
);