Skip to content

Get authorization information for a program

GET
/program/{program_id}
curl --request GET \
--url https://example.com/program/example

Get authorization information for a program

program_id
required
string

Success

Media type application/json

Describes a program

object
program_id
required

Name of the program

string
program_curators
required

List of users who are program curators for this program

Array<string>
team_members
required

List of users who are original researchers for this program

Array<string>
creation_date

Date program was created, for embargo purposes. This may or may not be the date of ingest.

string
/^\d{4}-\d{2}-\d{2}$/
Example generated
{
"program_id": "example",
"program_curators": [
"example"
],
"team_members": [
"example"
],
"creation_date": "example"
}