Mark43 Persons API

The Persons API from Mark43 — 8 operation(s) for persons.

OpenAPI Specification

mark43-persons-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Mark43 Partnerships Associated Records Persons API
  version: external
  description: 'Mark43''s Partnerships (External) API lets approved law-enforcement technology partners integrate with a Mark43 agency''s cloud RMS and CAD: create and read reports, persons, evidence and chain-of-custody, attachments, CAD events, warrants, tasks, users, and E911 data. REST over HTTPS with JSON payloads and HTTP Basic authentication using secure API tokens.'
  x-provenance:
    method: derived
    source: https://developers.mark43.com/
    generated: '2026-07-20'
servers:
- url: https://{department}.mark43.com/partnerships/api
  description: Per-agency Mark43 tenant. Replace {department} with your agency subdomain.
  variables:
    department:
      default: department
      description: Your agency's Mark43 tenant subdomain.
security:
- httpBasic: []
tags:
- name: Persons
paths:
  /partnerships/api/external/person/:
    get:
      tags:
      - Persons
      operationId: getPerson
      summary: Retrieve person (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/attributes:
    put:
      tags:
      - Persons
      operationId: putPersonAttributes
      summary: Update attributes (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/identifying_marks:
    post:
      tags:
      - Persons
      operationId: postPersonIdentifyingMarks
      summary: Create/submit identifying marks (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/master:
    post:
      tags:
      - Persons
      operationId: postPersonMaster
      summary: Create/submit master (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/merge:
    post:
      tags:
      - Persons
      operationId: postPersonMerge
      summary: Create/submit merge (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/merge_with_criteria:
    post:
      tags:
      - Persons
      operationId: postPersonMergeWithCriteria
      summary: Create/submit merge with criteria (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/name_identifiers:
    put:
      tags:
      - Persons
      operationId: putPersonNameIdentifiers
      summary: Update name identifiers (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
  /partnerships/api/external/person/search:
    post:
      tags:
      - Persons
      operationId: postPersonSearch
      summary: Create/submit search (Persons)
      responses:
        '200':
          description: Successful response wrapped in the standard ApiResult envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
        '400':
          description: Bad request; success=false with error message.
        '401':
          description: Missing or invalid HTTP Basic credentials.
        '403':
          description: Authenticated token lacks access to the resource.
        '404':
          description: Resource not found.
        '429':
          description: Too many requests (RFC 6585 rate limiting).
        '500':
          description: Internal server error.
components:
  schemas:
    ApiResult:
      type: object
      description: Standard Mark43 response envelope wrapping every endpoint's payload.
      properties:
        data:
          description: The created or retrieved object(s); shape varies by endpoint.
        success:
          type: boolean
          description: Whether the request succeeded.
        error:
          type: string
          description: Error message populated when success is false.
      required:
      - success
  securitySchemes:
    httpBasic:
      type: http
      scheme: basic
      description: Secure API token presented via the standard HTTP Basic Authorization header on every request; issued by your Mark43 Technical Services Representative.