Geek Social — Documentação
API ReferenceSteam

DELETE /integrations/steam/api-key

Limpar API key salva

DELETE/integrations/steam/api-keyAuth: accessToken

Remove steam_api_key. Importação fica indisponível até nova key ser setada.

Request

Esta requisição não tem corpo.

Response

204

object

Erros

Sem respostas de erro documentadas.

Exemplos

curl -X DELETE 'http://localhost:3003/integrations/steam/api-key' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer SEU_ACCESS_TOKEN' \
  -d '{}'
await fetch('http://localhost:3003/integrations/steam/api-key', {
  method: 'DELETE',
  headers: {
    'Content-Type': 'application/json',
    Authorization: 'Bearer ' + accessToken,
  },
  body: JSON.stringify({}),
})

Side effects

Relacionados

On this page