Create claim
Creates a new claim for a company
/v1/hq/claimsThe 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
Request Body
application/json
Unique identifier of the payor (typically the customer responsible for the claim).
Social security number of the payor.
Unique identifier of the company associated with this claim.
Unique identifier of the event for which the claim is being made.
Unique identifier of the VAT percentage to be used for the claim.
Total monetary value of the claim.
doubleProportional share of the event cost to be paid, expressed as a percentage (1–100).
double1 <= value <= 100Whether to notify the customer via sms about the claim.
Response Body
application/json
curl -X POST "https://api.noona.is/v1/hq/claims" \ -H "Content-Type: application/json" \ -d '{ "payor_id": "string", "payor_ssn": "string", "company_id": "string", "event_id": "string", "vat_id": "string" }'{
"id": "string",
"reference_id": "string",
"bill_number": "string",
"due_date": "string",
"claimant_id": "string",
"employee_name": "string",
"customer_name": "string",
"customer_kennitala": "string",
"amount": 0,
"currency": "string",
"status": "Paid",
"external_url": "string",
"created_at": "2019-08-24T14:15:22Z"
}