跳转到主要内容
PATCH
/
access-control
/
signing-key
/
{keyId}
TypeScript
import { Livepeer } from "livepeer";

const livepeer = new Livepeer({
  apiKey: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await livepeer.accessControl.update({}, "<id>");

  // Handle the result
  console.log(result);
}

run();
{
  "errors": [
    [
      "id not provided",
      "Account not found"
    ]
  ]
}

更新签名密钥

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

路径参数

keyId
string
必填

ID of the signing key

请求体

application/json
disabled
boolean
name
string

响应

Success (No content)

Last modified on March 3, 2026