Uploading Team Data (beta)
Importing Teams Data
Upload Example Using cURL
curl --location --request POST 'https://logilica.io/api/import/v1/teams/create' \
--header 'X-lgca-token: lgca_UeRxFs_3RYRJEJtdYp7j7Wa6DirG5NjiYslsb' \
--header 'x-lgca-domain: myworkspace' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Development Team",
"members": [{
"name": "John Doe",
"email": "[email protected]"
},
{
"name": "Jane Doe,
"email": "[email protected]"
}],
"subTeams": ["1234567"]
}'API Schema for Importing Team
Create a Team
Create a team
Name of the team
The sub teams within the team
Success
Data given doesn't match schema. Return value will be ZodError with validation message
Unauthorized
Team not found
Failed to process request
Update a Team
Update a team
Name of the team
The sub teams within the team
Success
Data given doesn't match schema. Return value will be ZodError with validation message
Unauthorized
Team not found
Failed to process request
Delete a Team
Delete a team
Success
Data given doesn't match schema. Return value will be ZodError with validation message
Unauthorized
Team not found
Failed to process request
List Teams
List the teams in a domain
Success in retrieving teams
Name of the team
The sub teams within the team
Data given doesn't match schema. Return value will be ZodError with validation message
Unauthorized
Team not found
Last updated