Available in Classic and VPC
Create a new service to use the AiTEMS service.
Request
The following describes the request format for the endpoint. The request format is as follows:
Method | URI |
---|---|
POST | /services |
Request headers
For headers common to all AiTEMS APIs, see Common AiTEMS headers.
Request body
The following describes the request body.
Field | Type | Required | Description |
---|---|---|---|
name |
String | Required | Service name
|
description |
String | Optional | Service description
|
type |
String | Optional | Service type
|
Request example
The following is a sample request.
curl --location --request POST 'https://aitems.apigw.ntruss.com/api/v1/services' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json' \
--data '{
"name": "service",
"description": "test",
"type": "batch"
}'
Response
The following describes the response format.
Response body
The following describes the response body.
Field | Type | Required | Description |
---|---|---|---|
serviceId |
String | - | Service ID |
name |
String | - | Service name |
description |
String | - | Service description |
status |
String | - | Service status
|
datasets |
Array | - | Information of dataset set to service |
hpConfig |
Object | - | Hyperparameter optimization (HPO) settings information |
hpConfig.is_enabled |
Boolean | - | HPO configuration status
|
hpConfig.{option} |
String, Long, Boolean | - | Configured HPO value
|
infers |
Array | - | Training result information
|
createdDate |
String | - | Service creation date and time |
updatedDate |
String | - | Last update date and time of the service |
type |
String | - | Service type
|
datasets
The following describes datasets
.
Field | Type | Required | Description |
---|---|---|---|
datasetId |
String | - | Dataset ID set to the service |
type |
String | - | Dataset type set to the service
|
name |
String | - | Dataset name set to the service |
schemaName |
String | - | Dataset schema name set to the service |
status |
String | - | Status of dataset set to the service
|
createdDate |
String | - | Creation date and time of dataset set to the service |
updatedDate |
String | - | Last update date and time of dataset set to the service |
infers
The following describes infers
.
Field | Type | Required | Description |
---|---|---|---|
dataType |
String | - | Dataset type of training result
|
trainVersion |
String | - | Training result version |
status |
String | - | Training result status
|
rowCount |
String | - | Result data count |
Response status codes
For response status codes common to all AiTEMS APIs, see Common AiTEMS API response status codes.
Response example
The following is a sample example.
{
"serviceId": "fboyb******",
"name": "service",
"description": "test",
"status": "datasetRequired",
"datasets": [],
"hpConfig": {
"is_enabled": false
},
"infers": [],
"createdDate": "2024-07-29T16:17:37.235",
"updatedDate": "2024-07-29T16:17:37.235",
"type": "batch"
}