ves-io-schema-customer_support-API-Create
On This Page:
Examples of creating customer_support
Usecase:
Create customer-support-1
Request using vesctl:
vesctl configuration create customer_support -i customer_support.yaml
where file customersupport.yaml has following contents (customersupport.CreateRequest):
metadata:
name: customer-support-1
namespace: documentation
spec:
category: infrastructure
description: test description
priority: PRIORITY_NORMAL
status: STATUS_NEW
subject: test subject
type: TYPE_PROBLEM
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: customer-support-1
namespace: documentation
spec:
category: infrastructure
comments: []
customFields: []
description: test description
followups: []
priority: PRIORITY_NORMAL
relatesTo: []
status: STATUS_NEW
subject: test subject
tags: []
type: TYPE_PROBLEM
user: []
via: {}
systemMetadata:
creationTimestamp: "2021-03-31T08:28:23.494518200Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: a17c992c-9ef0-404d-81dc-1232ccd52d0e
Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"customer-support-1","namespace":"documentation"},"spec":{"type":"TYPE_PROBLEM","category":"infrastructure","priority":"PRIORITY_NORMAL","status":"STATUS_NEW","description":"test description","subject":"test subject"}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build318584715_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/web/namespaces/documentation/customer_supports'
curl response:
HTTP/1.1 200 OK
Content-Length: 1077
Content-Type: application/json
Date: Wed, 31 Mar 2021 08:28:23 GMT
Vary: Accept-Encoding
{
"metadata": {
"name": "customer-support-1",
"namespace": "documentation",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "a17c992c-9ef0-404d-81dc-1232ccd52d0e",
"creation_timestamp": "2021-03-31T08:28:23.494518200Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
"type": "TYPE_PROBLEM",
"category": "infrastructure",
"priority": "PRIORITY_NORMAL",
"status": "STATUS_NEW",
"description": "test description",
"subject": "test subject",
"tags": [
],
"custom_fields": [
],
"via": {
},
"user": [
],
"comments": [
],
"created_at": null,
"update_at": null,
"tp_id": "",
"followups": [
],
"relates_to": [
],
"escalated": false,
"author_name": ""
}
}