blob: 0d536b1b4a645f456e27f0a9709cc4e8a09e63d6 [file] [log] [blame]
..
..
.. Licensed under the Apache License, Version 2.0 (the "License");
.. you may not use this file except in compliance with the License.
.. You may obtain a copy of the License at
..
.. http://www.apache.org/licenses/LICENSE-2.0
..
.. Unless required by applicable law or agreed to in writing, software
.. distributed under the License is distributed on an "AS IS" BASIS,
.. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
.. See the License for the specific language governing permissions and
.. limitations under the License.
..
.. _to-api-service_categories:
**********************
``service_categories``
**********************
``GET``
=======
Get all requested :term:`Service Categories`.
:Auth. Required: Yes
:Roles Required: None
:Permissions Required: SERVICE-CATEGORY:READ
:Response Type: Array
Request Structure
-----------------
.. table:: Request Query Parameters
+-----------+---------------------------------------------------------------------------------------------------------------+
| Name | Description |
+===========+===============================================================================================================+
| name | Filter for :term:`Service Categories` with this name |
+-----------+---------------------------------------------------------------------------------------------------------------+
| orderby | Choose the ordering of the results - must be the name of one of the fields of the objects in the ``response`` |
| | array |
+-----------+---------------------------------------------------------------------------------------------------------------+
| sortOrder | Changes the order of sorting. Either ascending (default or "asc") or descending ("desc") |
+-----------+---------------------------------------------------------------------------------------------------------------+
| limit | Choose the maximum number of results to return |
+-----------+---------------------------------------------------------------------------------------------------------------+
| offset | The number of results to skip before beginning to return results. Must use in conjunction with limit |
+-----------+---------------------------------------------------------------------------------------------------------------+
| page | Return the n\ :sup:`th` page of results, where "n" is the value of this parameter, pages are ``limit`` long |
| | and the first page is 1. If ``offset`` was defined, this query parameter has no effect. ``limit`` must be |
| | defined to make use of ``page``. |
+-----------+---------------------------------------------------------------------------------------------------------------+
.. code-block:: http
:caption: Request Example
GET /api/5.0/service_categories?name=SERVICE_CATEGORY_NAME HTTP/1.1
Host: trafficops.infra.ciab.test
User-Agent: curl/7.47.0
Accept: */*
Cookie: mojolicious=...
Response Structure
------------------
:name: This :term:`Service Category`'s name
:lastUpdated: The date and time at which this :term:`Service Category` was last modified, in :rfc:`3339` format
.. versionchanged:: 5.0
Prior to version 5.0 of the API, this field was in :ref:`non-rfc-datetime`.
.. code-block:: http
:caption: Response Example
HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Set-Cookie, Cookie
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin: *
Content-Type: application/json
Set-Cookie: mojolicious=...; Path=/; Expires=Mon, 18 Nov 2019 17:40:54 GMT; Max-Age=3600; HttpOnly
Whole-Content-Sha512: Yzr6TfhxgpZ3pbbrr4TRG4wC3PlnHDDzgs2igtz/1ppLSy2MzugqaGW4y5yzwzl5T3+7q6HWej7GQZt1XIVeZQ==
X-Server-Name: traffic_ops_golang/
Date: Wed, 29 Mar 2023 15:56:34 GMT
Content-Length: 102
{
"response": [
{
"lastUpdated": "2023-03-29T19:43:17.557642+05:30",
"name": "SERVICE_CATEGORY_NAME"
}
]
}
``POST``
========
Create a new service category.
:Auth. Required: Yes
:Roles Required: "admin" or "operations"
:Permissions Required: SERVICE-CATEGORY:CREATE, SERVICE-CATEGORY:READ
:Response Type: Object
Request Structure
-----------------
:name: This :term:`Service Category`'s name
.. code-block:: http
:caption: Request Example
POST /api/5.0/service_categories HTTP/1.1
Host: trafficops.infra.ciab.test
User-Agent: curl/7.47.0
Accept: */*
Cookie: mojolicious=...
Content-Length: 48
Content-Type: application/json
{
"name": "SERVICE_CATEGORY_NAME",
}
Response Structure
------------------
:name: This :term:`Service Category`'s name
:lastUpdated: The date and time at which this :term:`Service Category` was last modified, in :rfc:`3339` format
.. versionchanged:: 5.0
Prior to version 5.0 of the API, this field was in :ref:`non-rfc-datetime`.
.. code-block:: http
:caption: Response Example
HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Set-Cookie, Cookie
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin: *
Content-Type: application/json
Set-Cookie: mojolicious=...; Path=/; Expires=Mon, 18 Nov 2019 17:40:54 GMT; Max-Age=3600; HttpOnly
Whole-Content-Sha512: +pJm4c3O+JTaSXNt+LP+u240Ba/SsvSSDOQ4rDc6hcyZ0FIL+iY/WWrMHhpLulRGKGY88bM4YPCMaxGn3FZ9yQ==
X-Server-Name: traffic_ops_golang/
Date: Wed, 29 Mar 2023 15:58:37 GMT
Content-Length: 154
{
"alerts": [
{
"text": "serviceCategory was created.",
"level": "success"
}
],
"response": {
"lastUpdated": "2023-03-29T21:28:37.884457+05:30",
"name": "SERVICE_CATEGORY_NAME"
}
}