Users
On this page, we'll dive into the different projects endpoints you can use to fetch projects programmatically.
POST/api/Community/GetUserList
List community users
This endpoint allows you to retrieve a paginated list of all your community's users
Request body attributes
- Name
communityId- Type
- integer
- Description
The ID of your community.
- Name
take- Type
- integer
- Description
Limit the number of users returned.
- Name
skip- Type
- integer
- Description
Specify the number of users to skip.
Request
POST
/api/Community/GetUserList
curl -X POST https://api.babele.co/api/Community/GetUserList \
-H "Authorization: Bearer eyJhbGcgwgwe7gfwgwZZVCJ9.eyJTdWJqZWN0IjoiN2ZkMjc4YmUtMzA1Zi00ZWExLWJmODItNTQ5Yjg0NDBiM2E5IiwiaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvd3MvMjAwNS8wNS9pZGVudGl0eS9jbGFpbXMvc2lkIjoiYjE5ZDE0NWYtZDZiZC00Y2U5LTljYTQtYjFlOTgzNmRhODlhIiwidXBuIjoiNDAxMTQ0IiwiaHR0cDovL2JhYmVsZS5jby9jbGFpbXMvcGxhdGZvcm1hZG1pbmNsYWltIjoiRmFsc2UiLCJodHRwOi8vYmFiZWxlLmNvL2NsYWltcy9sb2dpbnJlcXFWFWGFQFsc2UiLCJuYmYiOjE3NDMyNjA0MDcsImV4cCI6MTc0Mzg2NTIwNywiaWF0IjoxNzQzMjYwNDA3fQ.K34301vGXSvFQC-5ypvDbfEr-L-uX57zw6GBjNa3sT4" \
-H "Content-Type: application/json" \
-d '{"skip":0,"take":50,"orderBy":5,"communityId":999}'
Response
{
"isAdmin": true,
"pendingUsers": null,
"pendingByUsers": null,
"users": {
"count": 141,
"list": [
{
"communityCircleId": 1921,
"isPendingByUser": false,
"isPendingByTeam": true,
"id": 1140,
"firstName": "0ztJh1slIU",
"lastName": "SuFeOGczzQc",
"mail": "yftirlTbp@test.com",
"photo": "/Images/branding.babele/default-user.png",
"occupation": null,
"biography": "",
"commentCount": 0,
"likeCount": 0,
"followedUsersCount": 0,
"activationCode": null,
"activationCodeSent": null,
"isProfileWizardDone": true,
"countryId": 5,
"country": "Germany",
"city": "Berlin",
"company": "Babele",
"isBanned": false,
"isActive": true,
"invitationUrl": null,
"language": "en-EN",
"registrationDate": "2014-04-25T16:10:12Z",
"lastLoginDate": "0001-01-01T00:00:00Z",
"notificationEnabled": true,
"primaryCommunityId": 123,
"hasPendingRequests": null,
"userInterests": [],
"userSkills": [],
"userSocial": [],
"userMarketsExpertises": [],
"userSustainableDevelopmentsGoals": [],
"tags": ["tag 1 test", "tag 2 test"],
"termsAndConditionsVersion": 1,
"photoUrl": "/Images/branding.babele/default-user.png",
"facebookUrl": "https://facebook.com/user",
"twitterUrl": "twitter.com/user",
"googleUrl": "google.com/user",
"linkedInUrl": "linkedin.com/user",
"isFollowedByMe": false
}
]
},
"communityFilters": {
"countries": [
{
"name": "Albania",
"code": "AL",
"timezone": "Europe/Tirane",
"id": 2
}
],
"industries": [
{
"name": "Ad Tech",
"popUpText": null,
"isActive": false,
"isAddedByUser": false,
"id": 1328
},
{
"name": "Aerospace",
"popUpText": null,
"isActive": false,
"isAddedByUser": false,
"id": 1330
},
{
"name": "Agriculture & Farming",
"popUpText": null,
"isActive": false,
"isAddedByUser": false,
"id": 1228
}
],
"tags": [
"test",
"test1",
"test2"
],
"marketExpretises": [
{
"name": "Albania",
"code": "AL",
"timezone": "Europe/Tirane",
"id": 2
}
],
"interests": [
{
"name": "Building and construction",
"isActive": false,
"skills": null,
"id": 1337
}
],
"companies": [
"Babele"
]
}
}
POST/api/Project/GetUserList
Get project user list
This endpoint allows you to get an overview of a project's progress, details and team members.
Required query parameters
- Name
projectId- Type
- integer
- Description
Your community ID
- Name
take- Type
- integer
- Description
Limit the number of users returned.
- Name
skip- Type
- integer
- Description
Specify the number of users to skip.
Request
POST
/api/Project/GetUserList
curl -X POST https://api.babele.co/api/Project/GetUserList \
-H "Authorization: Bearer eyJhbGcgwgwe7gfwgwZZVCJ9.eyJTdWJqZWN0IjoiN2ZkMjc4YmUtMzA1Zi00ZWExLWJmODItNTQ5Yjg0NDBiM2E5IiwiaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvd3MvMjAwNS8wNS9pZGVudGl0eS9jbGFpbXMvc2lkIjoiYjE5ZDE0NWYtZDZiZC00Y2U5LTljYTQtYjFlOTgzNmRhODlhIiwidXBuIjoiNDAxMTQ0IiwiaHR0cDovL2JhYmVsZS5jby9jbGFpbXMvcGxhdGZvcm1hZG1pbmNsYWltIjoiRmFsc2UiLCJodHRwOi8vYmFiZWxlLmNvL2NsYWltcy9sb2dpbnJlcXFWFWGFQFsc2UiLCJuYmYiOjE3NDMyNjA0MDcsImV4cCI6MTc0Mzg2NTIwNywiaWF0IjoxNzQzMjYwNDA3fQ.K34301vGXSvFQC-5ypvDbfEr-L-uX57zw6GBjNa3sT4" \
-H "Content-Type: application/json"
-d '{"skip":0,"take":50,"orderBy":5,"projectId":999}'
Response
{
"isMember": false,
"canInviteUser": true,
"canInviteUserFromOutside": true,
"isAdmin": true,
"pendingByUsers": [
{
"projectCircleId": 17474,
"isPendingByUser": true,
"isPendingByTeam": false,
"requestedProjectCircleId": null,
"id": 402792,
"firstName": "Admin",
"lastName": "Test",
"mail": "test@testing.com",
"photo": "/Images/Uploads/profile_picture/admin_202409121347286849_256x256.jpg",
"occupation": "Admin",
"biography": "",
"commentCount": 0,
"likeCount": 0,
"followedUsersCount": 0,
"activationCode": null,
"activationCodeSent": null,
"isProfileWizardDone": false,
"countryId": 106,
"country": null,
"city": "Rome",
"company": "Benefit",
"isBanned": false,
"isActive": true,
"invitationUrl": null,
"language": "en-EN",
"registrationDate": "2024-09-12T13:44:06Z",
"lastLoginDate": "2025-05-08T17:37:38Z",
"notificationEnabled": true,
"primaryCommunityId": 241,
"hasPendingRequests": false,
"userInterests": null,
"userSkills": null,
"userSocial": null,
"userMarketsExpertises": null,
"userSustainableDevelopmentsGoals": null,
"tags": null,
"userTags": null,
"termsAndConditionsVersion": 2,
"photoUrl": "/Images/Uploads/profile_picture/admin_202409121347286849_256x256.jpg",
"facebookUrl": null,
"twitterUrl": null,
"googleUrl": null,
"linkedInUrl": null,
"isFollowedByMe": false
}
],
"users": {
"count": 5,
"list": [
{
"communityCircleId": 1921,
"isPendingByUser": false,
"isPendingByTeam": true,
"id": 1140,
"firstName": "0ztJh1slIU",
"lastName": "SuFeOGczzQc",
"mail": "yftirlTbp@test.com",
"photo": "/Images/branding.babele/default-user.png",
"occupation": null,
"biography": "",
"commentCount": 0,
"likeCount": 0,
"followedUsersCount": 0,
"activationCode": null,
"activationCodeSent": null,
"isProfileWizardDone": true,
"countryId": 5,
"country": "Germany",
"city": "Berlin",
"company": "Babele",
"isBanned": false,
"isActive": true,
"invitationUrl": null,
"language": "en-EN",
"registrationDate": "2014-04-25T16:10:12Z",
"lastLoginDate": "0001-01-01T00:00:00Z",
"notificationEnabled": true,
"primaryCommunityId": 123,
"hasPendingRequests": null,
"userInterests": [],
"userSkills": [],
"userSocial": [],
"userMarketsExpertises": [],
"userSustainableDevelopmentsGoals": [],
"tags": ["tag 1 test", "tag 2 test"],
"termsAndConditionsVersion": 1,
"photoUrl": "/Images/branding.babele/default-user.png",
"facebookUrl": "https://facebook.com/user",
"twitterUrl": "twitter.com/user",
"googleUrl": "google.com/user",
"linkedInUrl": "linkedin.com/user",
"isFollowedByMe": false
}
],
"filters": null
},
"pendingApplyToTeam": [
{
"projectCircleId": 17472,
"isPendingByUser": false,
"isPendingByTeam": false,
"requestedProjectCircleId": 17472,
"id": 398954,
"firstName": "Startup",
"lastName": "D3",
"mail": "startup@d3.com",
"photo": "/Images/Uploads/profile_picture/innovator_202303021443434229_256x256.jpg",
"occupation": "Startup @ D3",
"biography": "<p>My bio is coming soon.</p>",
"commentCount": 0,
"likeCount": 0,
"followedUsersCount": 0,
"activationCode": "4b62887c-e058-4208-890c-89e3a0fc460a",
"activationCodeSent": true,
"isProfileWizardDone": false,
"countryId": 1,
"country": null,
"city": "Capetown",
"company": "D3",
"isBanned": false,
"isActive": true,
"invitationUrl": null,
"language": "en-EN",
"registrationDate": "2023-03-02T14:42:23Z",
"lastLoginDate": "2025-05-13T15:33:00Z",
"notificationEnabled": true,
"primaryCommunityId": 305,
"hasPendingRequests": false,
"userInterests": null,
"userSkills": [
{
"id": 106724,
"skillId": 5688,
"skill": {
"name": "Project Finance",
"isActive": true,
"isAddedByUser": false,
"skillCategoryId": 1327,
"skillCategory": null,
"id": 5688
}
},
{
"id": 106725,
"skillId": 5687,
"skill": {
"name": "Non-Dilutive Funding",
"isActive": true,
"isAddedByUser": false,
"skillCategoryId": 1327,
"skillCategory": null,
"id": 5687
}
},
{
"id": 106746,
"skillId": 5593,
"skill": {
"name": "Scaling",
"isActive": true,
"isAddedByUser": false,
"skillCategoryId": 1333,
"skillCategory": null,
"id": 5593
}
},
{
"id": 106758,
"skillId": 5863,
"skill": {
"name": "Proxy",
"isActive": true,
"isAddedByUser": false,
"skillCategoryId": 1339,
"skillCategory": null,
"id": 5863
}
}
],
"userSocial": null,
"userMarketsExpertises": null,
"userSustainableDevelopmentsGoals": null,
"tags": null,
"userTags": null,
"termsAndConditionsVersion": 2,
"photoUrl": "/Images/Uploads/profile_picture/innovator_202303021443434229_256x256.jpg",
"facebookUrl": null,
"twitterUrl": null,
"googleUrl": null,
"linkedInUrl": "link missing",
"isFollowedByMe": false
}
]
}
