Netter attributes API

The attributes API from Netter — 6 operation(s) for attributes.

Operations 11

GET /api/v1/attributes List Attribute Definitions #
POST /api/v1/attributes Create Attribute Definition #
PATCH /api/v1/attributes/{definition_id} Update Attribute Definition #
DELETE /api/v1/attributes/{definition_id} Delete Attribute Definition #
GET /api/v1/attributes/members/{user_id} Get Member Attributes #
PUT /api/v1/attributes/members/{user_id} Set Member Attributes #
GET /api/v1/attributes/automation/entities/{entity_id}/columns Get Automation Entity Columns #
GET /api/v1/attributes/{definition_id}/automation Get Attribute Automation #
PUT /api/v1/attributes/{definition_id}/automation Put Attribute Automation #
DELETE /api/v1/attributes/{definition_id}/automation Delete Attribute Automation Rule #
POST /api/v1/attributes/{definition_id}/automation/sync Sync Attribute Automation #

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/netter-attributes-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

netter-attributes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DMI Backend actions Attributes API
  version: 0.1.0
servers:
- url: https://api.netter.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: attributes
paths:
  /api/v1/attributes:
    get:
      tags:
      - attributes
      summary: List Attribute Definitions
      description: List all attribute definitions for the company.
      operationId: list_attribute_definitions_api_v1_attributes_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/AttributeDefinitionRead'
                type: array
                title: Response List Attribute Definitions Api V1 Attributes Get
    post:
      tags:
      - attributes
      summary: Create Attribute Definition
      description: Create an attribute definition. Requires company admin.
      operationId: create_attribute_definition_api_v1_attributes_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttributeDefinitionCreate'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeDefinitionRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/attributes/{definition_id}:
    patch:
      tags:
      - attributes
      summary: Update Attribute Definition
      description: Update an attribute definition's label. Requires company admin.
      operationId: update_attribute_definition_api_v1_attributes__definition_id__patch
      parameters:
      - name: definition_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Definition Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttributeDefinitionUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeDefinitionRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - attributes
      summary: Delete Attribute Definition
      description: Delete an attribute definition. Requires company admin.
      operationId: delete_attribute_definition_api_v1_attributes__definition_id__delete
      parameters:
      - name: definition_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Definition Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/attributes/members/{user_id}:
    get:
      tags:
      - attributes
      summary: Get Member Attributes
      description: Get attribute values for a company member. Requires company admin.
      operationId: get_member_attributes_api_v1_attributes_members__user_id__get
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberAttributesRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - attributes
      summary: Set Member Attributes
      description: Set attribute values for a company member. Requires company admin.
      operationId: set_member_attributes_api_v1_attributes_members__user_id__put
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemberAttributesWrite'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberAttributesRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/attributes/automation/entities/{entity_id}/columns:
    get:
      tags:
      - attributes
      summary: Get Automation Entity Columns
      description: List dataset columns available for matching/value for a given entity.
      operationId: get_automation_entity_columns_api_v1_attributes_automation_entities__entity_id__columns_get
      parameters:
      - name: entity_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Entity Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                title: Response Get Automation Entity Columns Api V1 Attributes Automation Entities  Entity Id  Columns Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/attributes/{definition_id}/automation:
    get:
      tags:
      - attributes
      summary: Get Attribute Automation
      description: Get the automation rule for an attribute definition, or None if not configured.
      operationId: get_attribute_automation_api_v1_attributes__definition_id__automation_get
      parameters:
      - name: definition_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Definition Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/AttributeAutomationRead'
                - type: 'null'
                title: Response Get Attribute Automation Api V1 Attributes  Definition Id  Automation Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - attributes
      summary: Put Attribute Automation
      description: Configure (upsert) an automation rule and run an initial sync.
      operationId: put_attribute_automation_api_v1_attributes__definition_id__automation_put
      parameters:
      - name: definition_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Definition Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttributeAutomationWrite'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeAutomationConfigured'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - attributes
      summary: Delete Attribute Automation Rule
      description: Disable the automation rule for an attribute definition.
      operationId: delete_attribute_automation_rule_api_v1_attributes__definition_id__automation_delete
      parameters:
      - name: definition_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Definition Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/attributes/{definition_id}/automation/sync:
    post:
      tags:
      - attributes
      summary: Sync Attribute Automation
      description: Trigger an on-demand sync for an attribute automation rule.
      operationId: sync_attribute_automation_api_v1_attributes__definition_id__automation_sync_post
      parameters:
      - name: definition_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Definition Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeSyncStats'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    AttributeAutomationWrite:
      properties:
        entity_id:
          type: string
          format: uuid
          title: Entity Id
        match_kind:
          type: string
          enum:
          - email
          - user_id
          title: Match Kind
        match_column:
          type: string
          title: Match Column
        value_column:
          type: string
          title: Value Column
      type: object
      required:
      - entity_id
      - match_kind
      - match_column
      - value_column
      title: AttributeAutomationWrite
    AttributeSyncStats:
      properties:
        matched:
          type: integer
          title: Matched
        unmatched:
          type: integer
          title: Unmatched
        total_rows:
          type: integer
          title: Total Rows
      type: object
      required:
      - matched
      - unmatched
      - total_rows
      title: AttributeSyncStats
    AttributeAutomationRead:
      properties:
        definition_id:
          type: string
          format: uuid
          title: Definition Id
        entity_id:
          type: string
          format: uuid
          title: Entity Id
        match_kind:
          type: string
          title: Match Kind
        match_column:
          type: string
          title: Match Column
        value_column:
          type: string
          title: Value Column
        is_active:
          type: boolean
          title: Is Active
        last_synced_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Synced At
        last_sync_matched:
          anyOf:
          - type: integer
          - type: 'null'
          title: Last Sync Matched
        last_sync_unmatched:
          anyOf:
          - type: integer
          - type: 'null'
          title: Last Sync Unmatched
      type: object
      required:
      - definition_id
      - entity_id
      - match_kind
      - match_column
      - value_column
      - is_active
      - last_synced_at
      - last_sync_matched
      - last_sync_unmatched
      title: AttributeAutomationRead
    AttributeDefinitionUpdate:
      properties:
        label:
          type: string
          title: Label
      type: object
      required:
      - label
      title: AttributeDefinitionUpdate
    AttributeDefinitionCreate:
      properties:
        key:
          type: string
          pattern: ^[a-z0-9_]{1,64}$
          title: Key
        label:
          type: string
          title: Label
      type: object
      required:
      - key
      - label
      title: AttributeDefinitionCreate
    MemberAttributesRead:
      properties:
        user_id:
          type: string
          format: uuid
          title: User Id
        attributes:
          additionalProperties:
            items:
              type: string
            type: array
          type: object
          title: Attributes
      type: object
      required:
      - user_id
      - attributes
      title: MemberAttributesRead
    AttributeAutomationConfigured:
      properties:
        automation:
          $ref: '#/components/schemas/AttributeAutomationRead'
        stats:
          $ref: '#/components/schemas/AttributeSyncStats'
      type: object
      required:
      - automation
      - stats
      title: AttributeAutomationConfigured
    AttributeDefinitionRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        key:
          type: string
          title: Key
        label:
          type: string
          title: Label
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
      - id
      - key
      - label
      - created_at
      title: AttributeDefinitionRead
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MemberAttributesWrite:
      properties:
        values:
          additionalProperties:
            items:
              type: string
            type: array
          propertyNames:
            format: uuid
          type: object
          title: Values
      type: object
      required:
      - values
      title: MemberAttributesWrite