POST
/
workspaceproxies
/
me
/
issue-signed-app-token
curl --request POST \
  --url https://cloud.local.wirtual.dev/api/v2/workspaceproxies/me/issue-signed-app-token \
  --header 'Content-Type: application/json' \
  --header 'Wirtual-Session-Token: <api-key>' \
  --data '{
  "app_hostname": "<string>",
  "app_path": "<string>",
  "app_query": "<string>",
  "app_request": {
    "access_method": "path",
    "agent_name_or_id": "<string>",
    "app_prefix": "<string>",
    "app_slug_or_port": "<string>",
    "base_path": "<string>",
    "username_or_id": "<string>",
    "workspace_name_or_id": "<string>"
  },
  "path_app_base_url": "<string>",
  "session_token": "<string>"
}'
{
  "signed_token_str": "<string>"
}

Authorizations

Wirtual-Session-Token
string
header
required

Body

application/json
Issue signed app token request
app_hostname
string

AppHostname is the optional hostname for subdomain apps on the external proxy. It must start with an asterisk.

app_path
string

AppPath is the path of the user underneath the app base path.

app_query
string

AppQuery is the query parameters the user provided in the app request.

app_request
object
path_app_base_url
string

PathAppBaseURL is required.

session_token
string

SessionToken is the session token provided by the user.

Response

201 - application/json
Created
signed_token_str
string

SignedTokenStr should be set as a cookie on the response.