Langburp
Connections

Update a connection user

Update a connection user

PUT
/v1/connections/{connectionId}/users/{connectionUserId}

Authorization

x-api-key<token>

In: header

x-secret-key<token>

In: header

Request Body

application/jsonRequired
metadata
Required
object

Path Parameters

connectionId
Required
string
connectionUserId
Required
string
curl -X PUT "https://api.langburp.com/v1/connections/string/users/string" \
  -H "x-api-key: <token>" \
  -H "x-secret-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "metadata": {
      "id": "user_id_123",
      "name": "Bob Smith"
    }
  }'

The connection user was updated successfully

{}