Retrieve all information about all external functions that you have created.
cURL
curl --request GET \ --url https://api.play.ai/api/v1/external-functions \ --header 'Authorization: Bearer <token>' \ --header 'X-USER-ID: <api-key>'
[ { "id": "f0gZrOKBKL7veJ6o1M", "name": "<string>", "description": "<string>", "endpointUrl": "<string>", "method": "GET", "parameters": [ { "type": "number", "name": "<string>", "description": "<string>", "id": "<string>", "parameterPosition": "body" } ] } ]
Your secret API key from PlayAI, formatted as Bearer YOUR_SECRET_API_KEY.
Bearer YOUR_SECRET_API_KEY
Your unique user ID from PlayAI.
application/json
External functions retrieved.
The response is of type object[].
object[]
Was this page helpful?