TAG LINE
TAG LINE
SMALL TITLE
User defined representation of changing from one Status to another Status.
identity READ-ONLY | "identity": 15 Type: Number This is the unique numeric identifier for the ServiceTransition |
ownerId READ-ONLY | "ownerId": 27 Type: Number Unique identifier for the associated Owner object. |
ownerName READ-ONLY | "ownerName": "Sample Name" Type: String The name of the object associated with the ownerId property. |
name | "name": "Suspended" Type: String User defined name for the the Transition. |
fromServiceStatusTypeId | "fromServiceStatusTypeId": 27 Type: Number Unique identifier for the associated ServiceStatusType object. |
fromServiceStatusTypeName | "fromServiceStatusTypeName": "Sample Name" Type: String The name of the object associated with the fromServiceStatusTypeId property. |
toServiceStatusTypeId | "toServiceStatusTypeId": 16 Type: Number Unique identifier for the associated ServiceStatusType object. |
toServiceStatusTypeName | "toServiceStatusTypeName": "Sample Name" Type: String The name of the object associated with the toServiceStatusTypeId property. |
DELETE | Service/Transition/{id} |
Delete an instance of the ServiceTransition object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the ServiceTransition object. |
Delete an instance of the ServiceTransition object. DELETE Service/Transition/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "delete", "results": { "totalCount": 4, "items": [ { "identity": 1, "action": "deleted", "dtoTypeKey": "serviceTransition" }, { "lhsId": 2, "rhsId": 2, "action": "detached", "dtoTypeKey": "sampleObjectConnector" }, { "foreignKeyIdentity": 2, "action": "deleted", "dtoTypeKey": "sampleObject" } ] } } |
GET | Service/Transition/ |
Retrieve all of the ServiceTransition objects. | |
Retrieve all of the ServiceTransition objects. GET Service/Transition/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 14, "ownerName": "Sample Text Data", "name": "Suspended", "fromServiceStatusTypeId": 20, "fromServiceStatusTypeName": "Sample Text Data", "toServiceStatusTypeId": 1, "toServiceStatusTypeName": "Sample Text Data" } ] } |
GET | Service/Transition/Paged |
Retrieve all of the ServiceTransition objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the ServiceTransition objects in a paged fashion. GET Service/Transition/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 25, "ownerName": "Sample Text Data", "name": "Suspended", "fromServiceStatusTypeId": 22, "fromServiceStatusTypeName": "Sample Text Data", "toServiceStatusTypeId": 2, "toServiceStatusTypeName": "Sample Text Data" } ] } } |
GET | Service/Transition/{id} |
Retrieve an instance of the ServiceTransition object by its ID. | |
{id} | Unique identifier for the ServiceTransition object. |
Retrieve an instance of the ServiceTransition object by its ID. GET Service/Transition/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 10, "ownerName": "Sample Text Data", "name": "Suspended", "fromServiceStatusTypeId": 16, "fromServiceStatusTypeName": "Sample Text Data", "toServiceStatusTypeId": 24, "toServiceStatusTypeName": "Sample Text Data" } } |
POST | Service/Transition/ |
Create a new instance of the ServiceTransition object. | |
Create a new instance of the ServiceTransition object. POST Service/Transition/ { "name": "Suspended", "fromServiceStatusTypeId": 2, "toServiceStatusTypeId": 24 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 8, "ownerName": "Sample Text Data", "name": "Suspended", "fromServiceStatusTypeId": 9, "fromServiceStatusTypeName": "Sample Text Data", "toServiceStatusTypeId": 23, "toServiceStatusTypeName": "Sample Text Data" } ] } } |
PUT | Service/Transition/{id} |
Update an existing instance of the ServiceTransition object. | |
Update an existing instance of the ServiceTransition object. PUT Service/Transition/{id} { "identity": 1, "name": "Suspended", "fromServiceStatusTypeId": 19, "toServiceStatusTypeId": 15 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 15, "ownerName": "Sample Text Data", "name": "Suspended", "fromServiceStatusTypeId": 2, "fromServiceStatusTypeName": "Sample Text Data", "toServiceStatusTypeId": 24, "toServiceStatusTypeName": "Sample Text Data" } ] } } |