Download OpenAPI specification:
Welcome to the Apps API documentation. This API provides endpoints for the Nettix mobile applications, including checkout processes and user management.
Returns a paginated list of orders with optional filters.
| page | integer >= 1 Page number (default: 1) |
| limit | integer [ 1 .. 100 ] Number of orders per page (default: 20, max: 100) |
| status | string Order status filter (e.g., draft, pending, processing, completed, cancelled, failed) |
| user | string User ID or identifier filter |
string Billing email filter | |
| application | string Vertical/application source filter (must match a valid vertical name) |
| dateFrom | string <date> Start date filter (format: YYYY-MM-DD) |
| dateTo | string <date> End date filter (format: YYYY-MM-DD) |
{- "page": 1,
- "limit": 20,
- "total": 100,
- "orders": [
- {
- "order_id": 1,
- "transaction_id": "8437be3e-7f32-4d5c-a849-be3d69c8a128",
- "id_netti_user": 123,
- "order_status": "draft",
- "payment_gateway": "paytrail",
- "payment_method": "credit_card",
- "net_total": 100,
- "taxes_total": 24,
- "discount_total": 0,
- "gross_total": 124,
- "date_created": "2025-10-01T22:30:00",
- "date_updated": "2025-10-01T22:30:00",
- "created_from": "auto",
- "billing": {
- "company": "Test Company",
- "first_name": "John",
- "last_name": "Doe",
- "address": "Test Street 1",
- "zip": "00100",
- "city": "Helsinki",
- "email": "john.doe@example.com",
- "phone": "+358401234567"
}, - "line_items": [
- {
- "line_item_id": 1,
- "order_id": 1,
- "product_id": 1,
- "quantity": 2,
- "ad_id": 123456,
- "item_price": "100.00",
- "tax_percentage": "24.00",
- "item_gross_price": "124.00",
- "item_total": "248.00",
- "discount": "0.00"
}
]
}
]
}Returns complete order information including line items, billing details, and current status.
| id required | integer Order ID |
{- "order_id": 1,
- "transaction_id": "8437be3e-7f32-4d5c-a849-be3d69c8a128",
- "id_netti_user": 123,
- "order_status": "draft",
- "payment_gateway": "paytrail",
- "payment_method": "credit_card",
- "net_total": 100,
- "taxes_total": 24,
- "discount_total": 0,
- "gross_total": 124,
- "date_created": "2025-10-01T22:30:00",
- "date_updated": "2025-10-01T22:30:00",
- "created_from": "auto",
- "billing": {
- "company": "Test Company",
- "first_name": "John",
- "last_name": "Doe",
- "address": "Test Street 1",
- "zip": "00100",
- "city": "Helsinki",
- "email": "john.doe@example.com",
- "phone": "+358401234567"
}, - "line_items": [
- {
- "line_item_id": 1,
- "order_id": 1,
- "product_id": 1,
- "quantity": 2,
- "ad_id": 123456,
- "item_price": "100.00",
- "tax_percentage": "24.00",
- "item_gross_price": "124.00",
- "item_total": "248.00",
- "discount": "0.00"
}
]
}Updates an existing order with new line items and billing information.
| id required | integer Order ID |
| transaction_id | string or null Unique transaction ID for the payment |
| id_netti_user | integer |
| order_status | string Enum: "draft" "pending" "processing" "completed" "cancelled" "failed" |
| payment_gateway | string |
| payment_method | string |
| created_from | string Enum: "auto" "vene" "moto" "karavaani" "kone" "varaosa" "rekkari" "teho" |
required | object (BillingRequest) |
required | Array of objects (LineItemRequest) |
{- "transaction_id": "8437be3e-7f32-4d5c-a849-be3d69c8a128",
- "id_netti_user": 123,
- "order_status": "processing",
- "payment_gateway": "paytrail",
- "payment_method": "credit_card",
- "created_from": "auto",
- "billing": {
- "company": "Test Company",
- "first_name": "John",
- "last_name": "Doe",
- "address": "Test Street 1",
- "zip": "00100",
- "city": "Helsinki",
- "email": "john.doe@example.com",
- "phone": "+358401234567"
}, - "line_items": [
- {
- "product_id": 1,
- "quantity": 2,
- "ad_id": 123456,
- "discount": 0
}
]
}{- "order_id": 1,
- "transaction_id": "8437be3e-7f32-4d5c-a849-be3d69c8a128",
- "id_netti_user": 123,
- "order_status": "draft",
- "payment_gateway": "paytrail",
- "payment_method": "credit_card",
- "net_total": 100,
- "taxes_total": 24,
- "discount_total": 0,
- "gross_total": 124,
- "date_created": "2025-10-01T22:30:00",
- "date_updated": "2025-10-01T22:30:00",
- "created_from": "auto",
- "billing": {
- "company": "Test Company",
- "first_name": "John",
- "last_name": "Doe",
- "address": "Test Street 1",
- "zip": "00100",
- "city": "Helsinki",
- "email": "john.doe@example.com",
- "phone": "+358401234567"
}, - "line_items": [
- {
- "line_item_id": 1,
- "order_id": 1,
- "product_id": 1,
- "quantity": 2,
- "ad_id": 123456,
- "item_price": "100.00",
- "tax_percentage": "24.00",
- "item_gross_price": "124.00",
- "item_total": "248.00",
- "discount": "0.00"
}
]
}Creates a new order with the provided line items and billing information.
| transaction_id | string or null Unique transaction ID for the payment |
| id_netti_user | integer |
| order_status | string Enum: "draft" "pending" "processing" "completed" "cancelled" "failed" |
| payment_gateway | string |
| payment_method | string |
| created_from | string Enum: "auto" "vene" "moto" "karavaani" "kone" "varaosa" "rekkari" "teho" |
required | object (BillingRequest) |
required | Array of objects (LineItemRequest) |
{- "transaction_id": "8437be3e-7f32-4d5c-a849-be3d69c8a128",
- "id_netti_user": 123,
- "order_status": "draft",
- "payment_gateway": "paytrail",
- "payment_method": "credit_card",
- "created_from": "auto",
- "billing": {
- "company": "Test Company",
- "first_name": "John",
- "last_name": "Doe",
- "address": "Test Street 1",
- "zip": "00100",
- "city": "Helsinki",
- "email": "john.doe@example.com",
- "phone": "+358401234567"
}, - "line_items": [
- {
- "product_id": 1,
- "quantity": 2,
- "ad_id": 123456,
- "discount": 0
}
]
}{- "order_id": 1,
- "transaction_id": "8437be3e-7f32-4d5c-a849-be3d69c8a128",
- "id_netti_user": 123,
- "order_status": "draft",
- "payment_gateway": "paytrail",
- "payment_method": "credit_card",
- "net_total": 100,
- "taxes_total": 24,
- "discount_total": 0,
- "gross_total": 124,
- "date_created": "2025-10-01T22:30:00",
- "date_updated": "2025-10-01T22:30:00",
- "created_from": "auto",
- "billing": {
- "company": "Test Company",
- "first_name": "John",
- "last_name": "Doe",
- "address": "Test Street 1",
- "zip": "00100",
- "city": "Helsinki",
- "email": "john.doe@example.com",
- "phone": "+358401234567"
}, - "line_items": [
- {
- "line_item_id": 1,
- "order_id": 1,
- "product_id": 1,
- "quantity": 2,
- "ad_id": 123456,
- "item_price": "100.00",
- "tax_percentage": "24.00",
- "item_gross_price": "124.00",
- "item_total": "248.00",
- "discount": "0.00"
}
]
}Returns a paginated list of all active products with optional filters.
| page | integer >= 1 Page number (default: 1) |
| limit | integer [ 1 .. 100 ] Number of products per page (default: 20, max: 100) |
| name | string Filter by product name (partial match) |
| currency | string Filter by currency (ISO 4217) |
| is_active | boolean Filter by is_active true or false (default: all products) |
{- "page": 1,
- "limit": 20,
- "total": 100,
- "products": [
- {
- "product_id": 1,
- "name": "Premium Car Wash",
- "price": "19.99",
- "tax": "24.00",
- "currency": "EUR",
- "description": "Full exterior and interior car wash service.",
- "is_active": true
}
]
}Creates a new product and returns the created product details.
| name required | string |
| price required | string |
| tax required | string |
| currency required | string |
| description | string |
| is_active | boolean Whether the product is active. Defaults to true if not specified. |
{- "name": "Premium Car Wash",
- "price": "19.99",
- "tax": "24.00",
- "currency": "EUR",
- "description": "Full exterior and interior car wash service.",
- "is_active": true
}{- "product_id": 1,
- "name": "Premium Car Wash",
- "price": "19.99",
- "tax": "24.00",
- "currency": "EUR",
- "description": "Full exterior and interior car wash service.",
- "is_active": true
}Returns how many purchased products are still unused by the user.
| user_id required | integer Netti user ID to fetch quota for |
{- "user_id": 12345,
- "purchased": 5,
- "used": 3,
- "remaining": 2
}Returns the details of a single active product.
| id required | integer Product ID |
{- "product_id": 1,
- "name": "Premium Car Wash",
- "price": "19.99",
- "tax": "24.00",
- "currency": "EUR",
- "description": "Full exterior and interior car wash service.",
- "is_active": true
}Updates an existing product and returns the updated details.
| id required | integer Product ID |
| name required | string |
| price required | string |
| tax required | string |
| currency required | string |
| description | string |
| is_active | boolean Whether the product is active or soft-deleted. |
{- "name": "Premium Car Wash",
- "price": "19.99",
- "tax": "24.00",
- "currency": "EUR",
- "description": "Full exterior and interior car wash service.",
- "is_active": true
}{- "product_id": 1,
- "name": "Premium Car Wash",
- "price": "19.99",
- "tax": "24.00",
- "currency": "EUR",
- "description": "Full exterior and interior car wash service.",
- "is_active": true
}Soft-deletes a product (marks as inactive) and returns confirmation.
| id required | integer Product ID |
{- "success": true,
- "message": "Product with ID 1 has been deleted (soft-deleted).",
- "product_id": 1
}