We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc8057 commit bb62d1eCopy full SHA for bb62d1e
Src/Notion.Client/Api/Authentication/RevokeToken/AuthenticationClient.cs
@@ -12,11 +12,15 @@ public async Task RevokeTokenAsync(
12
{
13
var body = (IRevokeTokenBodyParameters)revokeTokenRequest;
14
15
- await _client.PostAsync<HttpResponseMessage>(
+ await _client.PostAsync<RevokeTokenResponse>(
16
ApiEndpoints.AuthenticationUrls.RevokeToken(),
17
body,
18
cancellationToken: cancellationToken
19
);
20
}
21
22
+
23
+ internal class RevokeTokenResponse
24
+ {
25
+ }
26
0 commit comments