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 47ec100 commit bba7e01Copy full SHA for bba7e01
src/FusionAuthClient.ts
@@ -610,13 +610,13 @@ export class FusionAuthClient {
610
/**
611
* Deletes the key for the given Id.
612
*
613
- * @param {UUID} keyOd The Id of the key to delete.
+ * @param {UUID} keyId The Id of the key to delete.
614
* @returns {Promise<ClientResponse<void>>}
615
*/
616
- deleteKey(keyOd: UUID): Promise<ClientResponse<void>> {
+ deleteKey(keyId: UUID): Promise<ClientResponse<void>> {
617
return this.start<void, Errors>()
618
.withUri('/api/key')
619
- .withUriSegment(keyOd)
+ .withUriSegment(keyId)
620
.withMethod("DELETE")
621
.go();
622
}
0 commit comments