- Social
- Comments
- Posts
- Reactions
- Story Groups
- Stories
- Social Views
- Social Collections
- Saved Posts
- Hidden Socials
- Calendar
- Calendars
- Events
- Event Rooms
- Authentication
- Global
- Profile
- Organizations
- Search Brand Fetch Brands
- Verify Organization
- Remove a Site
- Create a Site
- Invite Organization Branch
- List All Branches
- Accept Branch Invitation
- Decline Branch Invitation
- List All Organization Collaborators
- List All Organizations
- Search Organizations
- Retrieve an Organization
- Update an Organization
- Delete an Organization
- Create an Organization
- Search Brands
- List All Social Links
- Members
- List All Members
- Search Members
- Invite Organization Members
- Delete Invitation
- Update a Member
- Retrieve a Member
- Delete a Member
- Delete Multiple Members
- Accept Organization Invitation
- Decline Organization Invitation
- Check Member Existence
- Retrieve Invitation Link
- Retrieve Invitation Object
- Retrieve Non-Paginated Organization Members
- List All Resources of an Organization
- Update Member Resource Roles-V1
- Update Member Resource Roles-V2
- Followers
- Groups
- Profiles
- Experiences
- Group Members
- Profile Search History
- Alumni
- Favorites
- Retrieve an Invitation link
- Organizations
- Notification
- Storage
- Space
- Folders
- Space Members
- Check Member ExistenceGET
- List All MembersGET
- Search MembersGET
- Search Potential MembersGET
- Add a MemberPOST
- Invite MembersPOST
- Retrieve an Invitation LinkGET
- Accept an InvitationPOST
- Decline an InvitationPOST
- Update a MemberPATCH
- Assign LicensePATCH
- Assign License to an Organization GroupPATCH
- Remove a LicensePATCH
- Search License-Assigned Members and GroupsGET
- Remove a MemberDELETE
- Delete an InvitationDELETE
- Leave a SpaceDELETE
- Spaces
- Health
- Course
- Course Versions
- Completions
- Certificates
- Courses
- List All Courses
- Publish a Course
- Delete a Course
- Retrieve a Course
- Create a Course
- Update a Course
- Search a Course
- Delete All Course
- Review a Course
- Start a Course
- Create a Cycle
- Delete a Cycle
- Clone a Course
- Update Cycles
- List All Courses With Published Verifying Status
- Search Courses With Published Verifying Status
- List All Languages Course Count
- List All Skills Course Count
- Update a Course Certificate
- Create a Coupon
- Update a Coupon
- Delete a Coupon
- Update Version
- Compare Latest Course
- Categories
- Course Members
- Chapters
- Lectures
- Subjects
- Webhook
- Analytics
Add a Member
Testing
POST
/spaces/{spaceId}/members
spaceId
: Space Id to which the member blongs.profileId
and his role
inside the space, which can be space-member
, space-supervisor
and space-coordinator
.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aladia.io/v2/spaces/6617c00ed3179eccf598d5fd/members' \
--header 'apikey: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"profileId": "661165cc1060d8cb9f73954f",
"role": "space-member"
}'
Response Response Example
201 - Success
{
"profileId": "65292d0264ee81522be5fh46",
"role": "space-supervisor",
"spaceId": "65292d0264ee81522be5fh46",
"organizationId": "65292d0264ee81522be5fh46"
}
Request
Path Params
spaceId
stringÂ
required
Example:
6617c00ed3179eccf598d5fd
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Body Params application/json
profileId
stringÂ
required
Example:
670775694daebf393b266ea1
role
stringÂ
required
Examples
Responses
🟢201Created
application/json
Body
id
stringÂ
optional
fullName
stringÂ
optional
picture
stringÂ
optional
role
stringÂ
optional
email
stringÂ
optional
online
booleanÂ
optional
invited
booleanÂ
optional
invitedAt
stringÂ
optional
lastActivity
stringÂ
optional
invitationStatus
stringÂ
optional
🟠404Record Not Found
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-04-10 05:54:01