-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
82 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Execute relationship attribute query. | ||
|
||
Relationship attributes are all attributes that are shared within a | ||
relationship of the identity. | ||
|
||
## Example Body | ||
|
||
```json | ||
{ | ||
"query": { | ||
"key": "KeyOfRelAttribute", | ||
"owner": "enmeshedAddressOfOwner", | ||
"attributeCreationHints": { | ||
"confidentiality": "public", | ||
"title": "My display name", | ||
"valueHints": { | ||
"@type": "ProprietaryBoolean" | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
{% include rapidoc api_route_regex="^post /api/v2/attributes/ExecuteRelationshipAttributeQuery$" %} | ||
|
||
## Example | ||
|
||
```shell | ||
curl --location --request POST 'http://{connector_url}/api/v2/Attributes/ExecuteRelationshipAttributeQuery' \ | ||
--header 'X-API-KEY: xxx' \ | ||
--header 'Content-Type: application/json' \ | ||
--data-raw '{ | ||
"query": { | ||
"key": "KeyOfRelAttribute", | ||
"owner": "enmeshedAddressOfOwner", | ||
"attributeCreationHints": { | ||
"confidentiality": "public", | ||
"title": "My display name", | ||
"valueHints": { | ||
"@type": "ProprietaryBoolean" | ||
} | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Query identity attributes. | ||
|
||
[Identity attributes](/integrate/data-model-overview#identityattribute) are attributes that describe an identity. | ||
|
||
## Example Body | ||
|
||
```json | ||
{ | ||
"query": { | ||
"valueType": "DisplayName" | ||
} | ||
} | ||
``` | ||
|
||
{% include rapidoc api_route_regex="^post /api/v2/Attributes/ExecuteIdentityAttributeQuery$" %} | ||
|
||
## Example | ||
|
||
```shell | ||
curl --location --request POST 'http://{connector_url}/api/v2/Attributes/ExecuteRelationshipAttributeQuery' \ | ||
--header 'X-API-KEY: xxx' \ | ||
--header 'Content-Type: application/json' \ | ||
--data-raw '{ | ||
"query": { | ||
"valueType": "DisplayName" | ||
} | ||
} | ||
``` | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters