Crowd.dev Member Affiliations API API

API endpoints for managing project affiliations, including listing and bulk updating affiliation relationships within a profile.

Operations 2

GET /member/{memberId}/affiliation List Project Affiliations
PATCH /member/{memberId}/affiliation Update Multiple Project Affiliations

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/crowddev-member-affiliations-api-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

crowddev-member-affiliations-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CM API Docs Member Affiliations API
  version: 1.0.0
  description: API endpoints for LFX Community Data Platform application
servers:
- url: https://cm.lfx.dev/api/v1
  description: LFX CM Production
security:
- BearerAuth: []
tags:
- name: Member Affiliations API
  description: API endpoints for managing project affiliations, including listing and bulk updating affiliation relationships within a profile.
paths:
  /member/{memberId}/affiliation:
    get:
      security:
      - BearerAuth: []
      tags:
      - Member Affiliations API
      summary: List Project Affiliations
      description: Retrieve a list of project affiliations for a specific profile
      parameters:
      - name: memberId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Affiliation'
        '400':
          description: Bad request
        '404':
          description: Member not found
    patch:
      security:
      - BearerAuth: []
      tags:
      - Member Affiliations API
      summary: Update Multiple Project Affiliations
      description: Bulk update project affiliations for a specific profile
      parameters:
      - name: memberId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - affiliations
              properties:
                affiliations:
                  type: array
                  items:
                    type: object
                    required:
                    - organizationId
                    - segmentId
                    properties:
                      organizationId:
                        type: string
                        description: Organization ID associated with this affiliation
                      segmentId:
                        type: string
                        description: ID of the segment
                      dateEnd:
                        type: string
                        format: date-time
                        description: End date of the affiliation
                      dateStart:
                        type: string
                        format: date-time
                        description: Start date of the affiliation
      responses:
        '200':
          description: Affiliations updated successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Affiliation'
        '400':
          description: Bad request
        '404':
          description: Member not found
components:
  schemas:
    Affiliation:
      type: object
      properties:
        id:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
          description: Unique identifier for the affiliation
        organizationId:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
          description: Organization ID associated with this affiliation
        organizationLogo:
          type: string
          example: https://avatars.githubusercontent.com/u/1040002?v=4
          description: URL of the organization's logo
        organizationName:
          type: string
          example: The Linux Foundation
          description: Name of the organization
        segmentId:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
          description: ID of the segment
        segmentName:
          type: string
          example: Kubernetes
          description: Name of the segment
        segmentParentName:
          type: string
          example: Cloud Native Computing Foundation
          description: Name of the parent segment
        segmentSlug:
          type: string
          example: kubernetes
          description: Slug identifier for the segment
        dateStart:
          type: string
          example: '2023-01-01T00:00:00.000Z'
          format: date-time
          description: Start date of the affiliation
        dateEnd:
          type: string
          example: '2024-01-01T00:00:00.000Z'
          format: date-time
          description: End date of the affiliation
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained from LFX authentication service