curl --request PUT \
--url https://api.topsort.com/public/v1/user-service/advertiser-users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"vendorIds": [
"<string>"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Update a user vendor access. This will substitute accesses, so vendor ids not present in the update will be removed.
curl --request PUT \
--url https://api.topsort.com/public/v1/user-service/advertiser-users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"vendorIds": [
"<string>"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?