/async-interview | Type: Application | PCID required: Yes
Application MCP Servers
async-interview
Async Interview API
Server path:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Async Interview API
/async-interview | Type: Application | PCID required: Yes
| Tool | Description |
|---|---|
async_interview_create_job | Create a job |
async_interview_delete_job | Delete a job |
async_interview_get_team_info | Get current team info |
async_interview_list_interviews | List interviews |
async_interview_list_jobs | List jobs |
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
title | string | Yes | — | Title of the job position |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"title": {
"type": "string",
"description": "Title of the job position"
}
},
"required": [
"PCID",
"title"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | — | The ID of the job to delete |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "integer",
"description": "The ID of the job to delete"
}
},
"required": [
"PCID",
"id"
]
}
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
job_id | integer | No | — | Filter interviews by job ID |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"job_id": {
"type": "integer",
"description": "Filter interviews by job ID"
}
},
"required": [
"PCID"
]
}
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
