Passer au contenu principal
POST
/
service
/
projects_info
Informations sur Projects
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>"
  }
]

Autorisations

Authorization
string
header
requis

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

Corps

application/json
project_ids
string[]
requis

ID de projet externes au format 'entity/project'.

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

Réponse

Réponse réussie

external_project_id
string
requis

ID de projet externe au format « entity/project ».

internal_project_id
string
requis

ID de projet interne.