Products & Services
All API Operations related with products & services
READ Scope
WRITE Scope
UPDATE Scope
Last updated
All API Operations related with products & services
Last updated
GET /v1/product-services HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Accept: */*
{
"success": true,
"errors": [
"text"
],
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"code": "text",
"name": "text",
"taxes": [
{
"taxId": "123e4567-e89b-12d3-a456-426614174000",
"taxName": "text"
}
]
}
]
}GET /v1/product-services/{id} HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Accept: */*
{
"success": true,
"errors": [
"text"
],
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"code": "text",
"name": "text",
"taxes": [
{
"taxId": "123e4567-e89b-12d3-a456-426614174000",
"taxName": "text"
}
]
}
}POST /v1/product-services HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 85
{
"name": "text",
"productCode": "text",
"taxes": [
"123e4567-e89b-12d3-a456-426614174000"
]
}{
"success": true,
"errors": [
"text"
],
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"code": "text",
"name": "text",
"taxes": [
{
"taxId": "123e4567-e89b-12d3-a456-426614174000",
"taxName": "text"
}
]
}
}PUT /v1/product-services/{id} HTTP/1.1
Host: api.nuvio.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 85
{
"name": "text",
"productCode": "text",
"taxes": [
"123e4567-e89b-12d3-a456-426614174000"
]
}{
"success": true,
"errors": [
"text"
],
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"code": "text",
"name": "text",
"taxes": [
{
"taxId": "123e4567-e89b-12d3-a456-426614174000",
"taxName": "text"
}
]
}
}