Skip to main content
POST
/
service
/
projects_info
Projects Info
curl --request POST \
  --url https://api.example.com/service/projects_info \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_ids": [
    "<string>"
  ]
}
'
[
  {
    "external_project_id": "<string>",
    "internal_project_id": "<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.

Body

application/json
project_ids
string[]
required

External project IDs in 'entity/project' format.

Example:
["entity-a/project-a", "entity-b/project-b"]

Response

Successful Response

external_project_id
string
required

External project ID in 'entity/project' format.

internal_project_id
string
required

Internal project ID.