Passer au contenu principal
POST
/
objs
/
{object_id}
/
aliases
/
remove
Obj Supprimer des alias
curl --request POST \
  --url https://api.example.com/objs/{object_id}/aliases/remove \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "aliases": [
    "<string>"
  ]
}
'
{}

Autorisations

Authorization
string
header
requis

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Paramètres de chemin

object_id
string
requis

Corps

application/json

corps de la requête pour supprimer des alias (object_id provient du chemin).

project_id
string
requis
Exemple:

"entity/project"

aliases
string[]
requis
Exemple:
["staging"]

Réponse

Réponse réussie

The response is of type ObjRemoveAliasesRes · object.