Skip to content

Commit

Permalink
Fix typo in ContractDefinitions URL (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
florianrusch-zf authored May 16, 2022
1 parent 09842c2 commit 5b90f0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edc-controlplane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ __publicContractDefinition="
}"

# Call Data Mgmt API
curl -X POST "$__connectorUrl/$__dataMgmtPath/policies" --header "$__apiKey: $__apiKeyValue" --header "Content-Type: application/json" --data "$__publicContractDefinition"
curl -X POST "$__connectorUrl/$__dataMgmtPath/contractdefinitions" --header "$__apiKey: $__apiKeyValue" --header "Content-Type: application/json" --data "$__publicContractDefinition"
```

#### Bash Parameters
Expand All @@ -468,7 +468,7 @@ curl -X POST "$__connectorUrl/$__dataMgmtPath/policies" --header "$__apiKey: $__
Get Contract Definition

```bash
curl -X GET "$__connectorUrl/$__dataMgmtPath/policies/$__policyId" --header "$__apiKey: $__apiKeyValue" --header "Content-Type: application/json" | jq
curl -X GET "$__connectorUrl/$__dataMgmtPath/contractdefinitions/$__contractDefinitionId" --header "$__apiKey: $__apiKeyValue" --header "Content-Type: application/json" | jq
```

### 4. Get Contract Offer Catalog
Expand Down

0 comments on commit 5b90f0d

Please sign in to comment.