---
title: "Create new contact"
method: POST
path: "/vendors/{id}/contacts"
tags: ["Vendors"]
---

# Create new contact

`POST /vendors/{id}/contacts`

## Path parameters

- `id` integer, required

## Query parameters

- `skipWebhook` boolean

## Request body

- object
  - `name` string, required
  - `role` string, nullable — Role/Label of the contact.
  - `email` string, nullable — Email address of contact.
  - `phoneNumber` string, nullable — Phone number of contact
  - `extension` string, nullable — Phone number extension

## Response `201`

Successfully created contact

- object
  - `id` number, required — Global ID of the contact
  - `name` string, required
  - `role` string, nullable, required — Role/Label of the contact.
  - `email` string, nullable, required — Email address of contact.
  - `phoneNumber` string, nullable, required — Phone number of contact
  - `extension` string, nullable, required — Phone number extension
  - `vendorId` number, required — ID of vendor that contact will be associated to

## Other responses

- `400` — Failed to create the contact
- `401` — Invalid token
- `404` — Could not find the specified Vendor.
- `429` — Too many requests. Please retry in 10 seconds

---

[API](https://skmtc.net/getmaintainx/apis/maintainx-api.md) · [All operations](https://skmtc.net/getmaintainx/apis/maintainx-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getmaintainx/maintainx-api/revisions/ef9153fcac7c/schema)
