List Presentations

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://vaas.vag.as/doc/publicacao-vagas-vaas-en/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "publicacao-vagas-vaas-en MCP server": {
    "url": "https://vaas.vag.as/doc/publicacao-vagas-vaas-en/mcp"
  }
}

Close
GET /job-posting/presentations/{represented_hash}

Presentations of the company of the authenticated user

Path parameters

  • represented_hash string Required

    Hash identifier of the represented company.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • nome_template string
    • descricao string
    • nome_empresa string
    • confidencial boolean
GET /job-posting/presentations/{represented_hash}
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/job-posting/presentations/abc123xyz' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 1,
    "nome_template": "Programa de Trainee",
    "descricao": "Descrição da empresa",
    "nome_empresa": "Empresa XPTO",
    "confidencial": false
  }
]