mirror of
https://github.com/jlengrand/jetbrains-client-api-repository.git
synced 2026-03-10 08:31:24 +00:00
33 lines
640 B
HTTP
33 lines
640 B
HTTP
## AppsApi
|
|
|
|
### Create App
|
|
## Create App
|
|
POST https://api.machines.dev/v1/apps
|
|
Content-Type: application/json
|
|
Accept: application/json
|
|
Authorization: Bearer {{bearerToken}}
|
|
|
|
{
|
|
"app_name": "<string>",
|
|
"network": "<string>",
|
|
"org_slug": "<string>"
|
|
}
|
|
|
|
|
|
### Destroy App
|
|
## Destroy App
|
|
DELETE https://api.machines.dev/v1/apps/{{app_name}}
|
|
Authorization: Bearer {{bearerToken}}
|
|
|
|
### List Apps
|
|
## List Apps
|
|
GET https://api.machines.dev/v1/apps
|
|
Accept: application/json
|
|
Authorization: Bearer {{bearerToken}}
|
|
|
|
### Get App
|
|
## Get App
|
|
GET https://api.machines.dev/v1/apps/{{app_name}}
|
|
Accept: application/json
|
|
Authorization: Bearer {{bearerToken}}
|