API
HQ APIVat categories

Move company VAT assignments

Moves selected products/services to one company VAT category, creating missing assignments when needed.

POST/v1/hq/vat_assignments/move
AuthorizationBearer <token>

The Noona HQ API uses Bearer token for authentication.

Endpoints that return generic information that does not contain sensitive data do not require authentication. Endpoints that require authentication are specifically marked in the documentation.

Authorization: Bearer your-token

In: header

Query Parameters

select?array<string>
expand?array<string>

Request Body

application/json

company_id*string
Example"comp_123456"
vat_category_id*string
Example"vatcat_123456"
items*
Items1 <= items

Response Body

application/json

curl -X POST "https://api.noona.is/v1/hq/vat_assignments/move" \  -H "Content-Type: application/json" \  -d '{    "company_id": "comp_123456",    "vat_category_id": "vatcat_123456",    "items": [      {        "item_type": "product",        "item_id": "item_123456"      }    ]  }'
[
  {
    "id": "vatassign_123456",
    "company": "string",
    "issuer": "string",
    "item_type": "product",
    "item_id": "item_123456",
    "vat_category": "string",
    "order": 0,
    "created_at": "2026-06-17T12:00:00Z",
    "updated_at": "2026-06-17T12:00:00Z"
  }
]
Empty
Empty
Empty
Empty
Empty