Submit VAT report

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://restapi.wyzio.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Wyzio MCP server": {
    "url": "https://restapi.wyzio.com/mcp"
  }
}

Close
POST /api-v1/vat/report

Submits a VAT report for the specified organization. Returns 200 on success, or 400 if submission fails.

Headers

  • WEAL-TOKEN Required

    API token (can be retrieved from account settings)

  • TARGET-ORGANIZATION-ID

    ID of organization, for which the operation must be performed

Query parameters

  • organizationId integer(int64) Required

    Organization ID

multipart/form-data

Body

  • date string(date-time) Required

    Date in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z')

    Minimum length is 1.

  • file string(binary) Required

    VAT report file to submit

  • reportStartDate string(date-time) Required

    Date in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z')

    Minimum length is 1.

  • reportEndDate string(date-time) Required

    Date in ISO 8601 format (yyyy-MM-dd'T'HH:mm:ss.SSS'Z')

    Minimum length is 1.

Responses

  • 200 application/json

    OK

  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

POST /api-v1/vat/report
curl \
 --request POST 'https://wyzio.app/api-v1/vat/report?organizationId=42' \
 --header "Content-Type: multipart/form-data" \
 --form "date=2026-01-01T00:00:00.000Z" \
 --form "file=@file" \
 --form "reportStartDate=2026-01-01T00:00:00.000Z" \
 --form "reportEndDate=2026-01-01T00:00:00.000Z"