Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fixes url in EDR walkthrough #1359

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/usage/management-api-walkthrough/07_edrs.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Example of negotiating a contract for an asset with a framework agreement policy

```http request
POST /v2/edrs HTTP/1.1
Host: https://consumer-control.plane/api/management
Host: https://consumer-control.plane/management
X-Api-Key: password
Content-Type: application/json
```
Expand Down Expand Up @@ -124,7 +124,7 @@ Here's an example of querying with `assetId`:

```http request
POST /v2/edrs/request HTTP/1.1
Host: https://consumer-control.plane/api/management
Host: https://consumer-control.plane/management
X-Api-Key: password
Content-Type: application/json
```
Expand Down Expand Up @@ -162,7 +162,7 @@ then locating in the Consumer Control Plane's cache, they can be retrieved using

```http request
GET /v2/edrs/myTransferProcessId/dataaddress HTTP/1.1
Host: https://consumer-control.plane/api/management
Host: https://consumer-control.plane/management
X-Api-Key: password
Content-Type: application/json
```
Expand Down Expand Up @@ -209,7 +209,7 @@ will be done automatically if necessary transparently.

```http request
GET /v2/edrs/myTransferProcessId/dataaddress?auto_refresh=true HTTP/1.1
Host: https://consumer-control.plane/api/management
Host: https://consumer-control.plane/management
X-Api-Key: password
Content-Type: application/json
```
Expand All @@ -222,7 +222,7 @@ A explicit refresh API is available for users;

```http
POST /v2/edrs/myTransferProcessId/refresh HTTP/1.1
Host: https://consumer-control.plane/api/management
Host: https://consumer-control.plane/management
X-Api-Key: password
Content-Type: application/json
```
Expand All @@ -241,7 +241,7 @@ from the vault.

```http request
DELETE /v2/edrs/myTransferProcessId HTTP/1.1
Host: https://consumer-control.plane/api/management
Host: https://consumer-control.plane/management
X-Api-Key: password
Content-Type: application/json
```
Expand Down
Loading