VaultRE Staff API

Operations related to staff

Operations 1

POST /staff Add/Update a staff member #

Documentation

Specifications

Code Examples

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/vaultre-staff-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vaultre-staff-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VaultRE Aggregator Staff API
  description: Please ensure all API requests use HTTP/1.1.
  contact:
    name: VaultRE
    url: https://www.vaultre.com.au
    email: api@vaultre.com.au
  version: '1.0'
servers:
- url: https://aggregator.api.vaultre.com.au/api/v1.0
security:
- ApiKey: []
- Bearer: []
tags:
- name: staff
  description: Operations related to staff
paths:
  /staff:
    post:
      tags:
      - staff
      summary: Add/Update a staff member
      description: Add/Update a staff member
      operationId: addUpdateStaff
      requestBody:
        description: Staff object
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Staff'
        required: true
      responses:
        202:
          description: Data received successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessOrError'
        400:
          description: Invalid data payload
          content: {}
      x-codegen-request-body-name: body
components:
  schemas:
    Staff:
      type: object
      properties:
        transactionId:
          type: string
          format: uuid
        transactionDate:
          type: string
          format: date-time
        staffId:
          type: string
        officeId:
          type: string
        active:
          type: boolean
        firstName:
          type: string
        lastName:
          type: string
        position:
          type: string
        mobile:
          type: string
        email:
          type: string
          format: email
    SuccessOrError:
      type: object
      properties:
        success:
          type: boolean
        msg:
          type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: X-Api-Key
      in: header
      description: This value is provided to you by VaultRE and identifies you as a CRM
    Bearer:
      type: http
      scheme: bearer
      description: This value is a JWT token signed with the HS512 algorithm using your X-Api-Key value as the secret.