We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25e9ffe + c0eb25c commit b58721cCopy full SHA for b58721c
README.md
@@ -119,6 +119,18 @@ j1.create_relationship(
119
120
```
121
122
+##### Update a relationship
123
+
124
+```python
125
+j1.update_relationship(
126
+ relationship_id='<id-of-relationship-to-update>',
127
+ properties={
128
+ "<relationship-property-name>": "<relationship-property-updated-value>",
129
+ },
130
+)
131
132
+```
133
134
##### Delete a relationship
135
136
```python
@@ -596,4 +608,4 @@ j1.list_account_parameters()
596
608
j1.create_update_parameter(name="ParameterName", value="stored_value", secret=False)
597
609
598
610
599
-```
611
0 commit comments