Form3 Branch Identification API

The BranchIdentification API from Form3 — 2 operation(s) for branchidentification.

Operations 5

GET /organisation/branches/{branch_id}/identifications List Branch Identifications by Branch #
POST /organisation/branches/{branch_id}/identifications Create an identification for an existing Branch #
DELETE /organisation/branches/{branch_id}/identifications/{identification_id} Delete branch identification #
GET /organisation/branches/{branch_id}/identifications/{identification_id} Get a branch identification by id #
PATCH /organisation/branches/{branch_id}/identifications/{identification_id} Amend Branch Identification #

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/form3-branchidentification-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

form3-branchidentification-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Form3 Public Branch Identification API
  version: '1'
servers:
- url: https://api.form3.tech/v1
security:
- OAuth2: []
tags:
- name: BranchIdentification
paths:
  /organisation/branches/{branch_id}/identifications:
    get:
      operationId: ListBranchIdentificationsByBranch
      parameters:
      - description: Branch Id to which this identification relates to
        in: path
        name: branch_id
        required: true
        schema:
          type: string
          format: uuid
      - description: Which page to select
        in: query
        name: page[number]
        required: false
        schema:
          type: string
      - description: Number of items to select
        in: query
        name: page[size]
        required: false
        schema:
          type: integer
          maximum: 1000
          minimum: 0
      - description: Filter by organisation id
        in: query
        name: filter[organisation_id]
        required: false
        style: form
        explode: false
        schema:
          type: array
          items:
            format: uuid
            type: string
      - description: Filter to only include branch identifications with specified secondary_identification
        in: query
        name: filter[secondary_identification]
        required: false
        style: form
        explode: false
        schema:
          type: array
          items:
            type: string
      responses:
        200:
          description: List of branch identification
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationListResponse'
      summary: List Branch Identifications by Branch
      tags:
      - BranchIdentification
      x-access:
      - Public
    post:
      operationId: CreateBranchIdentification
      parameters:
      - description: Branch Id to which this identification relates to
        in: path
        name: branch_id
        required: true
        schema:
          type: string
          format: uuid
      responses:
        201:
          description: Branch Identification creation response
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationResponse'
        409:
          description: Branch Identification creation error, constraint violation of secondary identification
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ApiError'
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      summary: Create an identification for an existing Branch
      tags:
      - BranchIdentification
      x-access:
      - Public
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/BranchIdentificationRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/BranchIdentificationRequest'
  /organisation/branches/{branch_id}/identifications/{identification_id}:
    delete:
      operationId: DeleteBranchIdentification
      parameters:
      - description: Branch Id
        in: path
        name: branch_id
        required: true
        schema:
          type: string
          format: uuid
      - description: Branch Identification Id
        in: path
        name: identification_id
        required: true
        schema:
          type: string
          format: uuid
      - description: Version
        in: query
        name: version
        required: true
        schema:
          type: integer
          minimum: 0
      responses:
        204:
          description: Branch Identification deleted
        404:
          description: Branch Identification not found
      summary: Delete branch identification
      tags:
      - BranchIdentification
      x-access:
      - Public
    get:
      operationId: GetBranchIdentification
      parameters:
      - description: Branch Id
        in: path
        name: branch_id
        required: true
        schema:
          type: string
          format: uuid
      - description: Branch Identification Id
        in: path
        name: identification_id
        required: true
        schema:
          type: string
          format: uuid
      responses:
        200:
          description: Branch Identification response
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationResponse'
      summary: Get a branch identification by id
      tags:
      - BranchIdentification
      x-access:
      - Public
    patch:
      operationId: PatchBranchIdentification
      parameters:
      - description: Branch Id
        in: path
        name: branch_id
        required: true
        schema:
          type: string
          format: uuid
      - description: Branch Identification Id; Must match id in the payload
        in: path
        name: identification_id
        required: true
        schema:
          type: string
          format: uuid
      responses:
        200:
          description: Branch Identification updated
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/BranchIdentificationResponse'
        409:
          description: Branch Identification update error, constraint violation of secondary identification
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ApiError'
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      summary: Amend Branch Identification
      tags:
      - BranchIdentification
      x-access:
      - Public
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/BranchIdentificationRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/BranchIdentificationRequest'
components:
  schemas:
    BranchIdentificationData:
      allOf:
      - $ref: '#/components/schemas/BranchIdentification'
      - properties:
          relationships:
            $ref: '#/components/schemas/BranchIdentificationRelationships'
        type: object
      x-access:
      - Public
    RelationshipLinks:
      properties:
        data:
          items:
            $ref: '#/components/schemas/RelationshipData'
          type: array
      type: object
      x-access:
      - Public
    BranchIdentificationResponse:
      properties:
        data:
          $ref: '#/components/schemas/BranchIdentificationData'
      type: object
      x-access:
      - Public
    Links:
      properties:
        first:
          description: Link to the first resource in the list
          example: https://api.test.form3.tech/v1/api_name/resource_type
          type:
          - string
          - 'null'
        last:
          description: Link to the last resource in the list
          example: https://api.test.form3.tech/v1/api_name/resource_type
          type:
          - string
          - 'null'
        next:
          description: Link to the next resource in the list
          example: https://api.test.form3.tech/v1/api_name/resource_type
          type:
          - string
          - 'null'
        prev:
          description: Link to the previous resource in the list
          example: https://api.test.form3.tech/v1/api_name/resource_type
          type:
          - string
          - 'null'
        self:
          description: Link to this resource type
          example: https://api.test.form3.tech/v1/api_name/resource_type
          type: string
      required:
      - self
      type: object
      x-access:
      - Public
    BranchIdentificationRequest:
      properties:
        data:
          $ref: '#/components/schemas/BranchIdentification'
      required:
      - data
      type: object
      x-access:
      - Public
    ApiError:
      properties:
        error_code:
          format: uuid
          type: string
        error_message:
          type: string
      type: object
      x-access:
      - Public
    BranchIdentificationRelationships:
      properties:
        branch:
          $ref: '#/components/schemas/RelationshipLinks'
      x-access:
      - Public
    BranchIdentificationAttributes:
      properties:
        secondary_identification:
          description: Used to validate where expecting an exact match against payment's reference information.
          maxLength: 35
          minLength: 1
          type: string
      required:
      - secondary_identification
      type: object
      x-access:
      - Public
    BranchIdentificationListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/BranchIdentification'
          type: array
        links:
          $ref: '#/components/schemas/Links'
      type: object
      x-access:
      - Public
    BranchIdentification:
      properties:
        attributes:
          $ref: '#/components/schemas/BranchIdentificationAttributes'
        created_on:
          format: date-time
          type:
          - string
          - 'null'
        id:
          description: Unique resource ID
          example: 7826c3cb-d6fd-41d0-b187-dc23ba928772
          format: uuid
          type: string
        modified_on:
          format: date-time
          type:
          - string
          - 'null'
        organisation_id:
          description: Unique ID of the organisation this resource is created by
          example: ee2fb143-6dfe-4787-b183-ca8ddd4164d2
          format: uuid
          type: string
        type:
          description: Type of this resource, always branch_identifications
          example: branch_identifications
          format: ^branch_identifications$
          type: string
        version:
          description: Version number
          example: 0
          minimum: 0
          type: integer
      required:
      - id
      - attributes
      - organisation_id
      type: object
      x-access:
      - Public
    RelationshipData:
      properties:
        id:
          description: ID of the referenced resource
          format: uuid
          type: string
        type:
          description: Name of the referenced resource type
          type: string
      type: object
      x-access:
      - Public
  securitySchemes:
    Basic:
      type: http
      scheme: basic
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: https://api.form3.tech/v1/oauth2/token
      description: OAuth 2.0 with Client Credentials Grant type