GoFundMe Organization Consumer Mappings API

Organization Consumer Mappings

Operations 5

POST /consumer-charity-mappings Create a new organization consumer mapping #
GET /consumer-charity-mappings/{consumer_charity_mapping} Get a specific organization consumer mapping #
PUT /consumer-charity-mappings/{consumer_charity_mapping} Update an organization consumer mapping #
DELETE /consumer-charity-mappings/{consumer_charity_mapping} Delete an organization consumer mapping #
POST /consumer-charity-mappings/{id}/set-primary Set a mapping as the primary for its consumer charity ID #

Documentation

Specifications

Other Resources

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/gofundme-organization-consumer-mappings-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

gofundme-organization-consumer-mappings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GoFundMe Pro Organization Consumer Mappings API
  description: 'GoFundMe Pro API


    Welcome to the GoFundMe Pro API (2.0.0), a powerful toolset that empowers innovative and creative minds to engineer the world for good.'
  version: 2.0.0
servers:
- url: https://pro.gofundme.com/api/2.0
security:
- OAuth2Application: []
- OAuth2Member: []
tags:
- name: Organization Consumer Mappings
  description: Organization Consumer Mappings
paths:
  /consumer-charity-mappings:
    post:
      tags:
      - Organization Consumer Mappings
      summary: Create a new organization consumer mapping
      description: Store a new organization consumer mapping
      operationId: createOrganizationConsumerMapping
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - consumer_charity_id
              - ein
              properties:
                consumer_charity_id:
                  description: Consumer charity ID
                  type: integer
                ein:
                  description: EIN (9 digits, with or without dash)
                  type: string
                organization_id:
                  description: Organization ID (optional for unmatched records)
                  type: integer
              type: object
      responses:
        '201':
          description: Mapping created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationConsumerMapping'
        '400':
          description: Validation error
        '409':
          description: Mapping already exists
  /consumer-charity-mappings/{consumer_charity_mapping}:
    get:
      tags:
      - Organization Consumer Mappings
      summary: Get a specific organization consumer mapping
      description: Show a specific organization consumer mapping
      operationId: getOrganizationConsumerMapping
      parameters:
      - name: consumer_charity_mapping
        in: path
        description: Mapping ID
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Organization consumer mapping details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationConsumerMapping'
        '404':
          description: Mapping not found
    put:
      tags:
      - Organization Consumer Mappings
      summary: Update an organization consumer mapping
      operationId: updateOrganizationConsumerMapping
      parameters:
      - name: consumer_charity_mapping
        in: path
        description: Mapping ID
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                consumer_charity_id:
                  description: Consumer charity ID
                  type: integer
                ein:
                  description: EIN (9 digits, with or without dash)
                  type: string
                organization_id:
                  description: Organization ID
                  type: integer
              type: object
      responses:
        '200':
          description: Mapping updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationConsumerMapping'
        '400':
          description: Validation error
        '404':
          description: Mapping not found
    delete:
      tags:
      - Organization Consumer Mappings
      summary: Delete an organization consumer mapping
      operationId: deleteOrganizationConsumerMapping
      parameters:
      - name: consumer_charity_mapping
        in: path
        description: Mapping ID
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Mapping deleted successfully
        '404':
          description: Mapping not found
  /consumer-charity-mappings/{id}/set-primary:
    post:
      tags:
      - Organization Consumer Mappings
      summary: Set a mapping as the primary for its consumer charity ID
      description: Switch the primary mapping for a consumer charity ID
      operationId: setOrganizationConsumerMappingAsPrimary
      parameters:
      - name: id
        in: path
        description: Mapping ID to set as primary
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Primary mapping switched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationConsumerMapping'
        '404':
          description: Mapping not found
components:
  schemas:
    OrganizationConsumerMapping:
      title: Organization Consumer Mapping
      properties:
        id:
          description: Primary identifier of record
          type: integer
          example: 1
        organization_id:
          description: Internal organization ID (null if unmatched)
          type:
          - integer
          - 'null'
          example: 123
        consumer_charity_id:
          description: External consumer charity ID
          type: integer
          example: 456789
        ein:
          description: EIN without dashes (9 digits)
          type: string
          example: '123456789'
        is_primary:
          description: Whether this is the primary organization for this consumer charity ID
          type: boolean
          example: true
        is_matched:
          description: Whether this mapping is matched to an organization (true if organization_id is not null)
          type: boolean
          example: true
        created_at:
          description: Date/time of record creation
          type: string
          format: date-time
          example: '2024-01-01T00:00:00Z'
        updated_at:
          description: Date/time of record last update
          type: string
          format: date-time
          example: '2024-01-01T00:00:00Z'
      type: object
  securitySchemes:
    OAuth2Application:
      type: oauth2
      description: OAuth bearer token for client application
      flows:
        clientCredentials:
          tokenUrl: /oauth2/auth
          refreshUrl: /oauth2/auth
          scopes:
            read: Read access
            write: Write access
    OAuth2Member:
      type: oauth2
      description: OAuth bearer token for client application with additional member context
      flows:
        password:
          tokenUrl: /oauth2/auth
          refreshUrl: /oauth2/auth
          scopes:
            read: Read access
            write: Write access