Skip to content

Commit

Permalink
Update API pages with v0.28.7
Browse files Browse the repository at this point in the history
  • Loading branch information
netbirddev committed Aug 2, 2024
1 parent d7cf9ab commit 5fde85d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/pages/ipa/resources/setup-keys.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,6 @@ echo $response;
Expiration time in seconds
</Property>
<Property name="revoked" type="boolean" required={true}>
Setup key revocation status
</Property>
<Property name="auto_groups" type="string[]" required={true}>
Expand Down Expand Up @@ -271,7 +266,6 @@ curl -X POST https://api.netbird.io/api/setup-keys \
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand All @@ -286,7 +280,6 @@ let data = JSON.stringify({
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand Down Expand Up @@ -323,7 +316,6 @@ payload = json.dumps({
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand Down Expand Up @@ -360,7 +352,6 @@ func main() {
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand Down Expand Up @@ -415,7 +406,6 @@ request.body = JSON.dump({
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand All @@ -434,7 +424,6 @@ RequestBody body = RequestBody.create(mediaType, '{
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand Down Expand Up @@ -469,7 +458,6 @@ curl_setopt_array($curl, array(
"name": "Default key",
"type": "reusable",
"expires_in": 86400,
"revoked": false,
"auto_groups": [
"ch8i4ug6lnn4g9hqv7m0"
],
Expand Down

0 comments on commit 5fde85d

Please sign in to comment.