Skip to content

Commit

Permalink
delete users
Browse files Browse the repository at this point in the history
  • Loading branch information
sachaarbonel committed Sep 18, 2024
1 parent ee2c3ce commit f75bbda
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docusaurus/video/docusaurus/docs/api/_common_/delete-users.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ client.delete_users(user_ids=["<id>"])
client.restore_users(user_ids=["<id>"])
```

</TabItem>

<TabItem value="go" label="Golang">

```go
client.DeleteUsers(ctx, &DeleteUsersRequest{UserIDs: []string{"<id>"}})

# restore
client.RestoreUsers(ctx, &RestoreUsersRequest{UserIDs: []string{"<id>"}})
```

</TabItem>
<TabItem value="curl" label="cURL">

Expand Down

0 comments on commit f75bbda

Please sign in to comment.