Users
Update User
Update the details of one of your Users.
PUT
/
users
/
{id}
Header
Path
Body
curl --request PUT \
--url https://eu.sequencehq.com/api/users/{id} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"sequenceAccountIds": [
"c9e249d8-5ac9-49af-b9a3-0da9f0946c3d"
]
}'
{
"id": "ca88f667-a17a-4c84-a8ee-8a4293834ff4",
"sequenceAccountIds": [
"c9e249d8-5ac9-49af-b9a3-0da9f0946c3d"
]
}
Headers
Authorizationrequired
string
Your API credentials. Eg. Basic {credentials}
.
Idempotency-Key
string
Specifying a unique ID for this request here lets you retry it without risk of performing the same operation twice.
Path Parameters
idrequired
string
Sequence User ID
Body
application/json
sequenceAccountIdsrequired
string[]
Response
201 - application/json
idrequired
string
sequenceAccountIdsrequired
string[]
curl --request PUT \
--url https://eu.sequencehq.com/api/users/{id} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"sequenceAccountIds": [
"c9e249d8-5ac9-49af-b9a3-0da9f0946c3d"
]
}'
{
"id": "ca88f667-a17a-4c84-a8ee-8a4293834ff4",
"sequenceAccountIds": [
"c9e249d8-5ac9-49af-b9a3-0da9f0946c3d"
]
}