Lone Wolf Technologies Client Contact API

The Client Contact API from Lone Wolf Technologies — 8 operation(s) for client contact.

Business capability
Customer Data Management BC-420.10

Operations 13

GET /client-contacts/{clientContactId} Get a client contact #
PATCH /client-contacts/{clientContactId} Update a client contact #
DELETE /client-contacts/{clientContactId} Delete a client contact #
GET /deals/{dealId}/client-contacts Get a client contact #
POST /deals/{dealId}/client-contacts Create a client contact #
POST /client-contacts/{clientContactId}/phone-numbers Create client contact phone number #
POST /client-contacts/{clientContactId}/email-addresses Create client contact email address #
POST /client-contacts/{clientContactId}/addresses Create client contact address #
PATCH /client-contacts/{clientContactId}/email-addresses/{emailAddressTypeCode} Update client contact email address #
DELETE /client-contacts/{clientContactId}/email-addresses/{emailAddressTypeCode} Delete client contact email address #
PATCH /client-contacts/{clientContactId}/phone-numbers/{phoneNumberTypeCode} Update client contact phone number #
DELETE /client-contacts/{clientContactId}/phone-numbers/{phoneNumberTypeCode} Delete client contact phone number #
DELETE /client-contacts/{clientContactId}/addresses/{addressTypeCode} Delete client contact address #

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/lone-wolf-client-contact-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

lone-wolf-client-contact-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Deals Client Contact API
  version: 1.0.0
  description: '## Index


    For partner integration use (25.01.00)


    ### Getting Started


    #### Getting a JWT Access Token


    `POST https://authentication.api.lwolf.com/v1/login`


    All APIs require an *Authorization* HTTP Header that contains a *Bearer {token}* as its value.'
servers:
- url: https://deals.api.lwolf.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- BearerToken: []
tags:
- name: Client Contact
paths:
  /client-contacts/{clientContactId}:
    get:
      summary: Get a client contact
      description: Using the client contact guid in the request path, the method requests a client contact.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Retrieved client contact successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      operationId: getClientContactsByClientContactId
      x-operation-id-source: derived
    patch:
      summary: Update a client contact
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Successfully updated the client contact.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '412':
          description: Optimistic concurrency check failed. The If-Match header is missing or it does not contain the version currently in the database.
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClientContact'
            example:
              id: string (UUID)
              type: string
              companyName: string
              prefix: string
              firstName: string
              middleName: string
              lastName: string
              suffix: string
              endCode: string
              movingOut: boolean
              occupation: string
              principalBusiness: string
              addresses:
              - typeCode: string
                line1: string
                line2: string
                city: string
                provinceCode: string
                postalCode: string
                countryCode: string
              phoneNumbers:
              - typeCode: string
                ext: string
                number: string
              emailAddresses:
              - typeCode: string
                address: string
      operationId: patchClientContactsByClientContactId
      x-operation-id-source: derived
    delete:
      summary: Delete a client contact
      description: Deletes a contact based on their contact GUID.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Successfully deleted the contact.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      operationId: deleteClientContactsByClientContactId
      x-operation-id-source: derived
  /deals/{dealId}/client-contacts:
    get:
      summary: Get a client contact
      description: Using the deal guid in the request path, the method requests a client contact.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: dealId
        in: in path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Retrieved client contacts successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      operationId: getDealsByDealIdClientContacts
      x-operation-id-source: derived
    post:
      summary: Create a client contact
      description: Creates a client contact in the given deal.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: dealId
        in: in path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '201':
          description: Successfully created the contact.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '409':
          description: Client contact already exists.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClientContact'
            example:
              id: string (UUID)
              type: string
              companyName: string
              prefix: string
              firstName: string
              middleName: string
              lastName: string
              suffix: string
              endCode: string
              movingOut: boolean
              occupation: string
              principalBusiness: string
              addresses:
              - typeCode: string
                line1: string
                line2: string
                city: string
                provinceCode: string
                postalCode: string
                countryCode: string
              phoneNumbers:
              - typeCode: string
                ext: string
                number: string
              emailAddresses:
              - typeCode: string
                address: string
      operationId: postDealsByDealIdClientContacts
      x-operation-id-source: derived
  /client-contacts/{clientContactId}/phone-numbers:
    post:
      summary: Create client contact phone number
      description: Using the client contact id in the request path, the method creates the contact's phone number.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created phone number successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneNumber'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '409':
          description: Phone number already exists.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PhoneNumber'
            example:
              typeCode: string
              ext: string
              number: string
      operationId: postClientContactsByClientContactIdPhoneNumbers
      x-operation-id-source: derived
  /client-contacts/{clientContactId}/email-addresses:
    post:
      summary: Create client contact email address
      description: Using the client contact id in the request path, the method creates the contact's email address.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created email address successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailAddress'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '409':
          description: Email address already exists.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailAddress'
            example:
              typeCode: string
              address: string
      operationId: postClientContactsByClientContactIdEmailAddresses
      x-operation-id-source: derived
  /client-contacts/{clientContactId}/addresses:
    post:
      summary: Create client contact address
      description: Using the client contact id in the request path, the method creates the contact's address.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created address successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '409':
          description: Email address already exists.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Address'
            example:
              typeCode: string
              line1: string
              line2: string
              city: string
              provinceCode: string
              postalCode: string
              countryCode: string
      operationId: postClientContactsByClientContactIdAddresses
      x-operation-id-source: derived
  /client-contacts/{clientContactId}/email-addresses/{emailAddressTypeCode}:
    patch:
      summary: Update client contact email address
      description: Using the client contact id and email address type code in the request path, the method updates the email address fields specified in the request body.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      - name: emailAddressTypeCode
        in: in path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully updated the email address
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact or email address not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '409':
          description: Email address already exists.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '412':
          description: Optimistic concurrency check failed. The If-Match header is missing or it does not contain the version currently in the database.
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailAddress'
            example:
              typeCode: string
              address: string
      operationId: patchClientContactsByClientContactIdEmailAddressesByEmailAddressTypeCode
      x-operation-id-source: derived
    delete:
      summary: Delete client contact email address
      description: Deletes the client contact's email address specified using the client contact id and email address type code path variables.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      - name: emailAddressTypeCode
        in: in path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully deleted the email address.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact or email address not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      operationId: deleteClientContactsByClientContactIdEmailAddressesByEmailAddressTypeCode
      x-operation-id-source: derived
  /client-contacts/{clientContactId}/phone-numbers/{phoneNumberTypeCode}:
    patch:
      summary: Update client contact phone number
      description: Using the client contact id and phone number type code in the request path, the method updates the phone number.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      - name: phoneNumberTypeCode
        in: in path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully updated the phone number
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact or phone number not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '409':
          description: Phone number already exists.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '412':
          description: Optimistic concurrency check failed. The If-Match header is missing or it does not contain the version currently in the database.
        '500':
          description: Unknown error. See response body for details.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PhoneNumber'
            example:
              typeCode: string
              ext: string
              number: string
      operationId: patchClientContactsByClientContactIdPhoneNumbersByPhoneNumberTypeCode
      x-operation-id-source: derived
    delete:
      summary: Delete client contact phone number
      description: Deletes the client contact's phone number specified using the client contact id and phone number type code path variables.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      - name: phoneNumberTypeCode
        in: in path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully deleted the phone number.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact or phone number not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      operationId: deleteClientContactsByClientContactIdPhoneNumbersByPhoneNumberTypeCode
      x-operation-id-source: derived
  /client-contacts/{clientContactId}/addresses/{addressTypeCode}:
    delete:
      summary: Delete client contact address
      description: Deletes the client contact address specified using the client contact id and address type code path variables.
      tags:
      - Client Contact
      security:
      - BearerToken: []
      parameters:
      - name: clientContactId
        in: in path
        required: true
        schema:
          type: string
      - name: addressTypeCode
        in: in path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully deleted the contact's address.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContact'
        '400':
          description: Invalid request. See response body for details.
        '401':
          description: Unauthorized request. See response body for details.
        '403':
          description: Permission denied. See response body for details.
        '404':
          description: Client contact or address not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Unknown error. See response body for details.
      operationId: deleteClientContactsByClientContactIdAddressesByAddressTypeCode
      x-operation-id-source: derived
components:
  schemas:
    ApiError:
      type: object
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            type: string
    EmailAddress:
      type: object
    Address:
      type: object
    ClientContact:
      type: object
    PhoneNumber:
      type: object
  securitySchemes:
    BearerToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'JSON Web Token obtained from the Authentication API (`POST /v1/login`). Pass the token as `Authorization: Bearer <token>` in every request. Tokens expire after the number of seconds specified in the `expiresIn` field of the login response.'