Import Shotgun project-user connections. Send a list of Shotgun project connection entries in the JSON body. Returns projects with team members added.
POST
/import/shotgun/project-connections
curl \
--request POST 'http://api.example.com/import/shotgun/project-connections' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '"[\n {\n \"id\": 12345,\n \"project\": {\n \"id\": 11111\n },\n \"user\": {\n \"id\": 22222\n }\n }\n]"'
Request example
[
{
"id": 12345,
"project": {
"id": 11111
},
"user": {
"id": 22222
}
}
]
Response examples (200)
[
{
"id": "a24a6ea4-ce75-4665-a070-57453082c25",
"name": "My Project",
"team": [
"b35b7fb5-df86-5776-b181-68564193d36"
],
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T11:00:00Z"
}
]