Upsun Tickets API
The Tickets API from Upsun — 1 operation(s) for tickets.
The Tickets API from Upsun — 1 operation(s) for tickets.
openapi: 3.0.1
info:
title: Upsun.com Rest Add-ons Tickets API
version: '1.0'
contact:
name: Support
url: https://upsun.com/contact-us/
termsOfService: https://upsun.com/trust-center/legal/tos/
description: "# Introduction\n\nUpsun, formerly Platform.sh, is a container-based Platform-as-a-Service. Our main API\nis simply Git. With a single `git push` and a couple of YAML files in\nyour repository you can deploy an arbitrarily complex cluster.\nEvery [**Project**](#tag/Project) can have multiple applications (PHP,\nNode.js, Python, Ruby, Go, etc.) and managed, automatically\nprovisioned services (databases, message queues, etc.).\n\nEach project also comes with multiple concurrent\nlive staging/development [**Environments**](#tag/Environment).\nThese ephemeral development environments\nare automatically created every time you push a new branch or create a\npull request, and each has a full copy of the data of its parent branch,\nwhich is created on-the-fly in seconds.\n\nOur Git implementation supports integrations with third party Git\nproviders such as GitHub, Bitbucket, or GitLab, allowing you to simply\nintegrate Upsun into your existing workflow.\n\n## Using the REST API\n\nIn addition to the Git API, we also offer a REST API that allows you to manage\nevery aspect of the platform, from managing projects and environments,\nto accessing accounts and subscriptions, to creating robust workflows\nand integrations with your CI systems and internal services.\n\nThese API docs are generated from a standard **OpenAPI (Swagger)** Specification document\nwhich you can find here in [YAML](openapispec-upsun.yaml) and in [JSON](openapispec-upsun.json) formats.\n\nThis RESTful API consumes and produces HAL-style JSON over HTTPS,\nand any REST library can be used to access it. On GitHub, we also host\na few API libraries that you can use to make API access easier, such as our\n[PHP API client](https://github.com/upsun/upsun-sdk-php).\n\nIn order to use the API you will first need to have an [Upsun account](https://auth.upsun.com/register/) \nand [create an API Token](https://docs.upsun.com/anchors/cli/api-token/).\n\n# Authentication\n\n## OAuth2\n\nAPI authentication is done with OAuth2 access tokens.\n\n### API tokens\n\nYou can use an API token as one way to get an OAuth2 access token. This\nis particularly useful in scripts, e.g. for CI pipelines.\n\nTo create an API token, go to the \"API Tokens\" section\nof the \"Account Settings\" tab on the [Console](https://console.upsun.com).\n\nTo exchange this API token for an access token, a `POST` request\nmust be made to `https://auth.upsun.com/oauth2/token`.\n\nThe request will look like this in cURL:\n\n<pre>\ncurl -u platform-api-user: \\\n -d 'grant_type=api_token&api_token=<em><b>API_TOKEN</b></em>' \\\n https://auth.upsun.com/oauth2/token\n</pre>\n\nThis will return a \"Bearer\" access token that\ncan be used to authenticate further API requests, for example:\n\n<pre>\n{\n \"access_token\": \"<em><b>abcdefghij1234567890</b></em>\",\n \"expires_in\": 900,\n \"token_type\": \"bearer\"\n}\n</pre>\n\n### Using the Access Token\n\nTo authenticate further API requests, include this returned bearer token\nin the `Authorization` header. For example, to retrieve a list of\n[Projects](#tag/Project)\naccessible by the current user, you can make the following request\n(substituting the dummy token for your own):\n\n<pre>\ncurl -H \"Authorization: Bearer <em><b>abcdefghij1234567890</b></em>\" \\\n https://api.upsun.com/projects\n</pre>\n\n# HAL Links\n\nMost endpoints in the API return fields which defines a HAL\n(Hypertext Application Language) schema for the requested endpoint.\nThe particular objects returns and their contents can vary by endpoint.\nThe payload examples we give here for the requests do not show these\nelements. These links can allow you to create a fully dynamic API client\nthat does not need to hardcode any method or schema.\n\nUnless they are used for pagination we do not show the HAL links in the\npayload examples in this documentation for brevity and as their content\nis contextual (based on the permissions of the user).\n\n## _links Objects\n\nMost endpoints that respond to `GET` requests will include a `_links` object\nin their response. The `_links` object contains a key-object pair labelled `self`, which defines\ntwo further key-value pairs:\n\n* `href` - A URL string referring to the fully qualified name of the returned object. For many endpoints, this will be the direct link to the API endpoint on the region gateway, rather than on the general API gateway. This means it may reference a host of, for example, `eu-2.platform.sh` rather than `api.upsun.com`.\n* `meta` - An object defining the OpenAPI Specification (OAS) [schema object](https://swagger.io/specification/#schemaObject) of the component returned by the endpoint.\n\nThere may be zero or more other fields in the `_links` object resembling fragment identifiers\nbeginning with a hash mark, e.g. `#edit` or `#delete`. Each of these keys\nrefers to a JSON object containing two key-value pairs:\n\n* `href` - A URL string referring to the path name of endpoint which can perform the action named in the key.\n* `meta` - An object defining the OAS schema of the endpoint. This consists of a key-value pair, with the key defining an HTTP method and the value defining the [operation object](https://swagger.io/specification/#operationObject) of the endpoint.\n\nTo use one of these HAL links, you must send a new request to the URL defined\nin the `href` field which contains a body defined the schema object in the `meta` field.\n\nFor example, if you make a request such as `GET /projects/abcdefghij1234567890`, the `_links`\nobject in the returned response will include the key `#delete`. That object\nwill look something like this fragment:\n\n```\n\"#delete\": {\n \"href\": \"/api/projects/abcdefghij1234567890\",\n \"meta\": {\n \"delete\": {\n \"responses\": {\n . . . // Response definition omitted for space\n },\n \"parameters\": []\n }\n }\n}\n```\n\nTo use this information to delete a project, you would then send a `DELETE`\nrequest to the endpoint `https://api.upsun.com/api/projects/abcdefghij1234567890`\nwith no body or parameters to delete the project that was originally requested.\n\n## _embedded Objects\n\nRequests to endpoints which create or modify objects, such as `POST`, `PATCH`, or `DELETE`\nrequests, will include an `_embedded` key in their response. The object\nrepresented by this key will contain the created or modified object. This\nobject is identical to what would be returned by a subsequent `GET` request\nfor the object referred to by the endpoint.\n"
x-logo:
url: https://docs.upsun.com/images/upsun-api.svg
href: https://upsun.com/#section/Introduction
altText: Upsun logo
servers:
- url: '{schemes}://api.upsun.com'
description: The Upsun.com API gateway
variables:
schemes:
default: https
security:
- OAuth2: []
tags:
- name: Tickets
paths:
/tickets:
get:
summary: List support tickets
operationId: list-tickets
parameters:
- $ref: '#/components/parameters/filter_ticket_id'
- $ref: '#/components/parameters/filter_created'
- $ref: '#/components/parameters/filter_updated'
- $ref: '#/components/parameters/filter_type'
- $ref: '#/components/parameters/filter_priority'
- $ref: '#/components/parameters/filter_ticket_status'
- $ref: '#/components/parameters/filter_requester_id'
- $ref: '#/components/parameters/filter_submitter_id'
- $ref: '#/components/parameters/filter_assignee_id'
- $ref: '#/components/parameters/filter_has_incidents'
- $ref: '#/components/parameters/filter_due'
- name: search
in: query
description: Search string for the ticket subject and description.
schema:
type: string
- $ref: '#/components/parameters/page'
responses:
'200':
description: The list of tickets.
content:
application/json:
schema:
properties:
count:
description: Total number of results.
type: integer
tickets:
description: Array of support tickets.
type: array
items:
$ref: '#/components/schemas/Ticket'
_links:
$ref: '#/components/schemas/HalLinks'
type: object
tags:
- Tickets
components:
parameters:
filter_has_incidents:
name: filter[has_incidents]
in: query
description: Whether or not this ticket has incidents.
schema:
type: boolean
filter_updated:
name: filter[updated]
in: query
description: ISO dateformat expected. The time when the support ticket was updated.
schema:
type: string
format: date-time
page:
name: page
in: query
description: Page to be displayed. Defaults to 1.
required: false
schema:
type: integer
format: int32
filter_requester_id:
name: filter[requester_id]
in: query
description: UUID of the ticket requester. Converted from the ZID value.
schema:
type: string
format: uuid
filter_created:
name: filter[created]
in: query
description: ISO dateformat expected. The time when the support ticket was created.
schema:
type: string
format: date-time
filter_type:
name: filter[type]
in: query
description: The type of the support ticket.
schema:
type: string
enum:
- problem
- task
- incident
- question
filter_assignee_id:
name: filter[assignee_id]
in: query
description: UUID of the ticket assignee. Converted from the ZID value.
schema:
type: string
format: uuid
filter_submitter_id:
name: filter[submitter_id]
in: query
description: UUID of the ticket submitter. Converted from the ZID value.
schema:
type: string
format: uuid
filter_due:
name: filter[due]
in: query
description: ISO dateformat expected. A time that the ticket is due at.
schema:
type: string
format: date-time
filter_ticket_status:
name: filter[status]
in: query
description: The status of the support ticket.
schema:
type: string
enum:
- closed
- deleted
- hold
- new
- open
- pending
- solved
filter_ticket_id:
name: filter[ticket_id]
in: query
description: The ID of the ticket.
schema:
type: integer
filter_priority:
name: filter[priority]
in: query
description: The priority of the support ticket.
schema:
type: string
enum:
- low
- normal
- high
- urgent
schemas:
Ticket:
description: The support ticket object.
properties:
ticket_id:
description: The ID of the ticket.
type: integer
created:
description: The time when the support ticket was created.
type: string
format: date-time
updated:
description: The time when the support ticket was updated.
type: string
format: date-time
type:
description: A type of the ticket.
type: string
enum:
- problem
- task
- incident
- question
subject:
description: A title of the ticket.
type: string
description:
description: The description body of the support ticket.
type: string
priority:
description: A priority of the ticket.
type: string
enum:
- low
- normal
- high
- urgent
followup_tid:
description: Followup ticket ID. The unique ID of the ticket which this ticket is a follow-up to.
type: string
status:
description: The status of the support ticket.
type: string
enum:
- closed
- deleted
- hold
- new
- open
- pending
- solved
recipient:
description: Email address of the ticket recipient, defaults to support@upsun.com.
type: string
requester_id:
description: UUID of the ticket requester.
type: string
format: uuid
submitter_id:
description: UUID of the ticket submitter.
type: string
format: uuid
assignee_id:
description: UUID of the ticket assignee.
type: string
format: uuid
organization_id:
description: A reference id that is usable to find the commerce license.
type: string
collaborator_ids:
description: A list of the collaborators uuids for this ticket.
type: array
items:
type: string
has_incidents:
description: Whether or not this ticket has incidents.
type: boolean
due:
description: A time that the ticket is due at.
type: string
format: date-time
tags:
description: A list of tags assigned to the ticket.
type: array
items:
type: string
subscription_id:
description: The internal ID of the subscription.
type: string
ticket_group:
description: Maps to zendesk field 'Request group'.
type: string
support_plan:
description: Maps to zendesk field 'The support plan associated with this ticket.
type: string
affected_url:
description: The affected URL associated with the support ticket.
type: string
format: url
queue:
description: The queue the support ticket is in.
type: string
issue_type:
description: The issue type of the support ticket.
type: string
resolution_time:
description: Maps to zendesk field 'Resolution Time'.
type: string
format: date-time
response_time:
description: Maps to zendesk field 'Response Time (time from request to reply).
type: string
format: date-time
project_url:
description: Maps to zendesk field 'Project URL'.
type: string
format: url
region:
description: Maps to zendesk field 'Region'.
type: string
category:
description: Maps to zendesk field 'Category'.
type: string
enum:
- access
- billing_question
- complaint
- compliance_question
- configuration_change
- general_question
- incident_outage
- bug_report
- onboarding
- report_a_gui_bug
- close_my_account
environment:
description: Maps to zendesk field 'Environment'.
type: string
enum:
- env_development
- env_staging
- env_production
ticket_sharing_status:
description: Maps to zendesk field 'Ticket Sharing Status'.
type: string
enum:
- ts_sent_to_platform
- ts_accepted_by_platform
- ts_returned_from_platform
- ts_solved_by_platform
- ts_rejected_by_platform
application_ticket_url:
description: Maps to zendesk field 'Application Ticket URL'.
type: string
format: url
infrastructure_ticket_url:
description: Maps to zendesk field 'Infrastructure Ticket URL'.
type: string
format: url
jira:
description: A list of JIRA issues related to the support ticket.
type: array
items:
properties:
id:
description: The id of the query.
type: integer
ticket_id:
description: The id of the ticket.
type: integer
issue_id:
description: The issue id number.
type: integer
issue_key:
description: The issue key.
type: string
created_at:
description: The created at timestamp.
type: number
format: float
updated_at:
description: The updated at timestamp.
type: number
format: float
type: object
zd_ticket_url:
description: URL to the customer-facing ticket in Zendesk.
type: string
format: url
type: object
HalLinks:
description: Links to _self, and previous or next page, given that they exist.
properties:
self:
description: The cardinal link to the self resource.
properties:
title:
description: Title of the link
type: string
href:
description: URL of the link
type: string
type: object
previous:
description: The link to the previous resource page, given that it exists.
properties:
title:
description: Title of the link
type: string
href:
description: URL of the link
type: string
type: object
next:
description: The link to the next resource page, given that it exists.
properties:
title:
description: Title of the link
type: string
href:
description: URL of the link
type: string
type: object
type: object
securitySchemes:
OAuth2:
type: oauth2
flows:
authorizationCode:
tokenUrl: https://auth.api.platform.sh/oauth2/token
refreshUrl: https://auth.api.platform.sh/oauth2/token
scopes: {}
authorizationUrl: https://auth.api.platform.sh/oauth2/authorize
description: ''
OAuth2Admin:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://auth.api.platform.sh/oauth2/token
refreshUrl: ''
scopes:
admin: administrative operations
description: ''
x-tagGroups:
- name: Organization Administration
tags:
- Organizations
- Organization Members
- Organization Invitations
- Organization Projects
- Add-ons
- name: Project Administration
tags:
- Project
- Domain Management
- Cert Management
- Certificate Provisioner
- Project Variables
- Repository
- Third-Party Integrations
- Support
- name: Environments
tags:
- Environment
- Environment Backups
- Environment Type
- Environment Variables
- Routing
- Source Operations
- Runtime Operations
- Deployment
- Autoscaling
- name: User Activity
tags:
- Project Activity
- Environment Activity
- name: Project Access
tags:
- Project Invitations
- Teams
- Team Access
- User Access
- name: Account Management
tags:
- API Tokens
- Connections
- MFA
- Users
- User Profiles
- SSH Keys
- Plans
- name: Billing
tags:
- Organization Management
- Subscriptions
- Orders
- Invoices
- Discounts
- Vouchers
- Records
- Profiles
- name: Global Info
tags:
- Project Discovery
- References
- Regions
- name: Internal APIs
tags:
- Project Settings
- Environment Settings
- Deployment Target
- System Information
- Container Profile