Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ In the `ControlPlane Management/Get EDR DataAddress for TransferId` request we h
value from the previous step in the URL path, for example:

```
{{HOST}}/api/management/v3/edrs/392d1767-e546-4b54-ab6e-6fb20a3dc12a/dataaddress
{{HOST}}/api/mgmt/v3/edrs/392d1767-e546-4b54-ab6e-6fb20a3dc12a/dataaddress
```

Executing this request produces a response that contains both the endpoint where we can fetch the data, and the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ meta {
}

get {
url: {{CONSUMER_CP}}/api/mgmt/v4/edrs/{{TRANSFER_PROCESS_ID}}/dataaddress
url: {{CONSUMER_CP}}/api/mgmt/v3/edrs/{{TRANSFER_PROCESS_ID}}/dataaddress
body: none
auth: inherit
}

vars:pre-request {
TRANSFER_PROCESS_ID: 2595ffc4-b53e-4858-8ba8-52e21c8dde5a
}

script:pre-request {
if(!(bru.getVar("TRANSFER_PROCESS_ID") !== undefined && bru.getVar("TRANSFER_PROCESS_ID") !== null)){
throw new Error('Transfer Process ID is not yet available, please execute request "Get Transfer Processes" first!');
Expand Down
2 changes: 1 addition & 1 deletion Requests/ControlPlane Management/Get cached EDRs.bru
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ meta {
}

post {
url: {{CONSUMER_CP}}/api/mgmt/v4/edrs/request
url: {{CONSUMER_CP}}/api/mgmt/v3/edrs/request
body: json
auth: inherit
}
Expand Down
Loading