Skip to content

Commit

Permalink
chore: remove -v flags
Browse files Browse the repository at this point in the history
  • Loading branch information
vinckr committed Aug 13, 2024
1 parent 005b3c6 commit 096a082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guides/manage-project-via-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Create a new Ory Network project through the API. You get the full configuration
the createProject API. Here you can optionally specify the region and workspace the project should be created in.

```bash
curl --location -v --request POST 'https://api.console.ory.sh/projects' \
curl --location --request POST 'https://api.console.ory.sh/projects' \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WORKSPACE_API_KEY}" \
--data '{
Expand Down Expand Up @@ -94,7 +94,7 @@ You can delete an Ory Network project by following these steps:
```bash
export ORY_PROJECT_ID=

curl --location -v --request DELETE "https://api.console.ory.sh/projects/${ORY_PROJECT_ID}" \
curl --location --request DELETE "https://api.console.ory.sh/projects/${ORY_PROJECT_ID}" \
--header "Accept: application/json" \
--header "Authorization: Bearer ${WORKSPACE_API_KEY}"
```
Expand Down

0 comments on commit 096a082

Please sign in to comment.