Last active
April 16, 2024 16:54
-
-
Save rafaelpontezup/d39bbd7a954b6af327f400d2656a1187 to your computer and use it in GitHub Desktop.
Example of a cURL to invoke a Remote Quick-Command from StackSpot AI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Submitting a request to invoke a specific Remote Quick-Command | |
curl --request POST \ | |
--url https://genai-code-buddy-api.stackspot.com/v1/quick-commands/create-execution/{slug-qc} \ | |
--header 'Authorization: Bearer <TOKEN>' \ | |
--header 'Content-Type: application/json' \ | |
--data '{ | |
"input_data": "qual tecnologia a microsft usa, responda em portugues" | |
}' | |
# Checking the result of the previous Quick-Command | |
curl --request GET \ | |
--url https://genai-code-buddy-api.stackspot.com/v1/quick-commands/callback/{id} \ | |
--header 'Authorization: Bearer <TOKEN> ' \ | |
--header 'Content-Type: application/json' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example of result in raw-text format from the
POST
request (it returns theexecution_id
value):"01HVKQ5XVSS48JBJCVJ71QBTM7"
Example of result in JSON format from the
GET
request: