Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
3 years agoConnect API cannot add or edit new items
Using both python3 and curl, I can retrieve items from the connect API (built using docker compose method, pulling latest) using curl:
curl -X "GET" "http://localhost:8080/v1/vaults/${VAULT_ID}/i...
michael_c_1P
1Password Team
3 years agoHi,
To get this to work using the code sample you provide, you just need to wrap the json request body in square braces, as follows:
json=[
{
"op": "replace",
"path": "/fields/password/value",
"value": "someP@55w0rdHere"
}
]