POST
/
gpu-instance
/
openapi
/
v1
/
networkstorage
/
update

Request Headers

Content-Type
string
required

Enum: application/json

Authorization
string
required

Bearer authentication format, for example: Bearer {{API Key}}.

Request Body

storageId
string
required

The unique identifier for the storage.

storageName
string
required

The name of the storage.

storageSize
string
required

The size of the storage in appropriate units.

Example

Request

curl --request POST \
  --url 'https://api.novita.ai/gpu-instance/openapi/v1/networkstorage/update' \
  --header 'Authorization: Bearer {{API Key}}' \
  --header 'Content-Type: application/json' \
  --data '{
    "storageId": "string",
    "storageName": "string",
    "storageSize": "string"
  }'

Response

{}