Uploading Contributors Data
Importing Contributors Data
GitHub, GitLab, Git, Jira, AzureDevops, BitBucket, CircleCi, CodeCov, BuildKite
Upload Example Using cURL
curl --location --request POST 'https://logilica.io/api/import/v1/contributors/create' \
--header 'X-lgca-token: lgca_UeRxFs_3RYRJEJtdYp7j7Wa6DirG5NjiYslsb' \
--header 'x-lgca-domain: myworkspace' \
--header 'Content-Type: application/json' \
--data-raw '[{
"name": "John Doe",
"email": "[email protected]",
"accounts": [{
"service": "GitHub",
"username": "johndoe",
"email": "[email protected]"
},
{
"service": "Jira",
"username": "[email protected]",
"email": "[email protected]"
}]
}]'API Schema for Contributors
Create Contributors
post
Bodyobject[]
namestringRequired
The full name of the contributor
emailstringRequired
The email address of the contributor
Responses
200
Success
application/json
400
Data given doesn't match schema. Return value will be ZodError with validation message
401
Unauthorized
404
Contributors not found
application/json
500
Failed to process request
application/json
post
contributors/createList Contributors
get
Responses
200
Success
application/json
400
Data given doesn't match schema. Return value will be ZodError with validation message
401
Unauthorized
404
Contributor not found
application/json
500
Failed to process request
application/json
get
contributors/Last updated