Disconnect Google Search Console
DELETE
/api/user/teams/{id}/integrations/google-search-console
const url = 'https://hitkeep.com/api/user/teams/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/integrations/google-search-console';const options = {method: 'DELETE', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://hitkeep.com/api/user/teams/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/integrations/google-search-console \ --cookie hk_token=<hk_token>Disconnects the team-level Google Search Console connection and clears stored token material.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Responses
Section titled “ Responses ”Status
Media type application/json
object
message
string
status
string
Example generated
{ "message": "example", "status": "example"}Access denied
Media type application/json
object
message
string
Example generated
{ "message": "example"}