mirror of
https://github.com/sasjs/server.git
synced 2026-01-16 18:30:06 +00:00
chore(api): updated trigger endpoints description
This commit is contained in:
@@ -113,7 +113,7 @@ components:
|
|||||||
properties:
|
properties:
|
||||||
sessionId:
|
sessionId:
|
||||||
type: string
|
type: string
|
||||||
description: "The SessionId is the name of the temporary folder used to store the outputs.\nFor SAS, this would be the SASWORK folder. Can be used to poll job status.\nThis session ID should be used to poll job status."
|
description: "sessionId is the ID of the session and the name of the temporary folder\nused to store code outputs.<br>\nFor SAS, this would be the SASWORK folder.<br>\nsessionId can be used to poll session state using\nGET /SASjsApi/session/{sessionId}/state endpoint."
|
||||||
example: 20241028074744-54132-1730101664824
|
example: 20241028074744-54132-1730101664824
|
||||||
required:
|
required:
|
||||||
- sessionId
|
- sessionId
|
||||||
@@ -605,7 +605,7 @@ components:
|
|||||||
properties:
|
properties:
|
||||||
sessionId:
|
sessionId:
|
||||||
type: string
|
type: string
|
||||||
description: "The SessionId is the name of the temporary folder used to store the outputs.\nFor SAS, this would be the SASWORK folder. Can be used to poll program status.\nThis session ID should be used to poll program status."
|
description: "sessionId is the ID of the session and the name of the temporary folder\nused to store program outputs.<br>\nFor SAS, this would be the SASWORK folder.<br>\nsessionId can be used to poll session state using\nGET /SASjsApi/session/{sessionId}/state endpoint."
|
||||||
example: 20241028074744-54132-1730101664824
|
example: 20241028074744-54132-1730101664824
|
||||||
required:
|
required:
|
||||||
- sessionId
|
- sessionId
|
||||||
|
|||||||
@@ -42,9 +42,11 @@ interface TriggerCodePayload {
|
|||||||
|
|
||||||
interface TriggerCodeResponse {
|
interface TriggerCodeResponse {
|
||||||
/**
|
/**
|
||||||
* The SessionId is the name of the temporary folder used to store the outputs.
|
* sessionId is the ID of the session and the name of the temporary folder
|
||||||
* For SAS, this would be the SASWORK folder. Can be used to poll job status.
|
* used to store code outputs.<br>
|
||||||
* This session ID should be used to poll job status.
|
* For SAS, this would be the SASWORK folder.<br>
|
||||||
|
* sessionId can be used to poll session state using
|
||||||
|
* GET /SASjsApi/session/{sessionId}/state endpoint.
|
||||||
* @example "20241028074744-54132-1730101664824"
|
* @example "20241028074744-54132-1730101664824"
|
||||||
*/
|
*/
|
||||||
sessionId: string
|
sessionId: string
|
||||||
|
|||||||
@@ -40,9 +40,11 @@ interface TriggerProgramPayload {
|
|||||||
|
|
||||||
interface TriggerProgramResponse {
|
interface TriggerProgramResponse {
|
||||||
/**
|
/**
|
||||||
* The SessionId is the name of the temporary folder used to store the outputs.
|
* sessionId is the ID of the session and the name of the temporary folder
|
||||||
* For SAS, this would be the SASWORK folder. Can be used to poll program status.
|
* used to store program outputs.<br>
|
||||||
* This session ID should be used to poll program status.
|
* For SAS, this would be the SASWORK folder.<br>
|
||||||
|
* sessionId can be used to poll session state using
|
||||||
|
* GET /SASjsApi/session/{sessionId}/state endpoint.
|
||||||
* @example "20241028074744-54132-1730101664824"
|
* @example "20241028074744-54132-1730101664824"
|
||||||
*/
|
*/
|
||||||
sessionId: string
|
sessionId: string
|
||||||
|
|||||||
Reference in New Issue
Block a user