curl --request PATCH \
--url https://api.gcore.com/iam/admin/sellers/{sellerId} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com",
"full_name": "<string>",
"phone": "<string>"
}'
{
"id": 123,
"email": "jsmith@example.com",
"full_name": "<string>",
"phone": "<string>",
"reseller_name": "<string>",
"company": "<string>",
"date_joined": "<string>",
"activated": true,
"deleted": true
}
curl --request PATCH \
--url https://api.gcore.com/iam/admin/sellers/{sellerId} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com",
"full_name": "<string>",
"phone": "<string>"
}'
{
"id": 123,
"email": "jsmith@example.com",
"full_name": "<string>",
"phone": "<string>",
"reseller_name": "<string>",
"company": "<string>",
"date_joined": "<string>",
"activated": true,
"deleted": true
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Seller's ID.
OK.
The response is of type object
.
Was this page helpful?