Get one experience
client.experiences.retrieve(stringexperience, RequestOptionsoptions?): ExperienceRetrieveResponse { actions, display_name, experience }
GET/v3/experiences/{experience}
Get one experience
import LinqAPIV3 from '@linqapp/sdk';
const client = new LinqAPIV3({
apiKey: process.env['LINQ_API_V3_API_KEY'], // This is the default and can be omitted
});
const experience = await client.experiences.retrieve('experience');
console.log(experience.actions);{
"actions": [
{
"fields": {
"foo": {
"max": 0,
"required": true,
"type": "string"
}
},
"name": "attach_card",
"summary": "Ask the customer to add a card to their wallet."
}
],
"display_name": "Agentcard",
"experience": "agentcard"
}{
"error": {
"status": 401,
"code": 2004,
"message": "Unauthorized - missing or invalid authentication token",
"doc_url": "https://docs.linqapp.com/error/codes/2xxx/2004/"
},
"success": false
}{
"error": {
"status": 404,
"code": 2001,
"message": "Resource not found",
"doc_url": "https://docs.linqapp.com/error/codes/2xxx/2001/"
},
"success": false
}{
"error": {
"status": 500,
"code": 3006,
"message": "Internal server error",
"doc_url": "https://docs.linqapp.com/error/codes/3xxx/3006/"
},
"success": false
}Returns Examples
{
"actions": [
{
"fields": {
"foo": {
"max": 0,
"required": true,
"type": "string"
}
},
"name": "attach_card",
"summary": "Ask the customer to add a card to their wallet."
}
],
"display_name": "Agentcard",
"experience": "agentcard"
}{
"error": {
"status": 401,
"code": 2004,
"message": "Unauthorized - missing or invalid authentication token",
"doc_url": "https://docs.linqapp.com/error/codes/2xxx/2004/"
},
"success": false
}{
"error": {
"status": 404,
"code": 2001,
"message": "Resource not found",
"doc_url": "https://docs.linqapp.com/error/codes/2xxx/2001/"
},
"success": false
}{
"error": {
"status": 500,
"code": 3006,
"message": "Internal server error",
"doc_url": "https://docs.linqapp.com/error/codes/3xxx/3006/"
},
"success": false
}