Loading...
Update the seller object, except the seller status. Use the disable, activate, deactivate, and delete endpoints to manage the status.
Success
const response = await fetch('https://api.platform.softwareone.com/public/v1/accounts/sellers/{id}', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "currencies": [ "text" ], "name": "text" }), }); const data = await response.json();
{ "id": "text", "href": "text", "externalId": "text", "icon": "text", "currencies": [ "text" ], "name": "text" }