PUT
/
integrations
/
{slug}
/
models
Bulk update integration models
curl --request PUT \
  --url https://api.portkey.ai/v1/integrations/{slug}/models \
  --header 'Content-Type: application/json' \
  --header 'x-portkey-api-key: <api-key>' \
  --data '{
  "models": [
    {
      "slug": "<string>",
      "enabled": true,
      "is_custom": true,
      "is_finetune": true,
      "base_model_slug": "<string>",
      "pricing_config": {
        "type": "static",
        "pay_as_you_go": {
          "request_token": {
            "price": 123
          },
          "response_token": {
            "price": 123
          }
        }
      }
    }
  ],
  "allow_all_models": true
}'
{}

Authorizations

x-portkey-api-key
string
header
required

Path Parameters

slug
string
required

Body

application/json

Response

200 - application/json

Models updated successfully

The response is of type object.