Skip to main content
POST
/
objs
/
{object_id}
/
aliases
/
remove
Obj Remove Aliases
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>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

object_id
string
required

Body

application/json

Request body for removing aliases (object_id comes from path).

project_id
string
required
Example:

"entity/project"

aliases
string[]
required
Example:
["staging"]

Response

Successful Response

The response is of type ObjRemoveAliasesRes · object.