📝 Add a note on where to find resultId
This commit is contained in:
@ -22,7 +22,11 @@ export const getResult = authenticatedProcedure
|
|||||||
.describe(
|
.describe(
|
||||||
"[Where to find my bot's ID?](../how-to#how-to-find-my-typebotid)"
|
"[Where to find my bot's ID?](../how-to#how-to-find-my-typebotid)"
|
||||||
),
|
),
|
||||||
resultId: z.string(),
|
resultId: z
|
||||||
|
.string()
|
||||||
|
.describe(
|
||||||
|
'The `resultId` is returned by the /startChat endpoint or you can find it by listing results with `/results` endpoint'
|
||||||
|
),
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.output(
|
.output(
|
||||||
|
@ -15494,7 +15494,8 @@
|
|||||||
"in": "path",
|
"in": "path",
|
||||||
"name": "resultId",
|
"name": "resultId",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"description": "The `resultId` is returned by the /startChat endpoint or you can find it by listing results with `/results` endpoint"
|
||||||
},
|
},
|
||||||
"required": true
|
"required": true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user