1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-06 06:10:04 +00:00

chore(api): updated trigger endpoints description

This commit is contained in:
Yury
2024-10-31 15:20:35 +03:00
parent ca17e7c192
commit 66aa9b5891
3 changed files with 12 additions and 8 deletions

View File

@@ -42,9 +42,11 @@ interface TriggerCodePayload {
interface TriggerCodeResponse {
/**
* The SessionId is the name of the temporary folder used to store the outputs.
* For SAS, this would be the SASWORK folder. Can be used to poll job status.
* This session ID should be used to poll job status.
* sessionId is the ID of the session and the name of the temporary folder
* used to store code outputs.<br>
* 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"
*/
sessionId: string

View File

@@ -40,9 +40,11 @@ interface TriggerProgramPayload {
interface TriggerProgramResponse {
/**
* The SessionId is the name of the temporary folder used to store the outputs.
* For SAS, this would be the SASWORK folder. Can be used to poll program status.
* This session ID should be used to poll program status.
* sessionId is the ID of the session and the name of the temporary folder
* used to store program outputs.<br>
* 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"
*/
sessionId: string