## Get one experience

**get** `/v3/experiences/{experience}`

Get one experience

### Path Parameters

- `experience: string`

### Returns

- `actions: optional array of object { fields, name, summary }`

  - `fields: optional map[object { max, required, type } ]`

    Fields you may send in `params`, keyed by the exact name to use.

    - `max: optional number`

      Maximum length, for strings.

    - `required: optional boolean`

    - `type: optional "string" or "cents" or "int" or "url"`

      - `"string"`

      - `"cents"`

      - `"int"`

      - `"url"`

  - `name: optional string`

  - `summary: optional string`

- `display_name: optional string`

- `experience: optional string`

### Example

```http
curl https://api.linqapp.com/api/partner/v3/experiences/$EXPERIENCE \
    -H "Authorization: Bearer $LINQ_API_V3_API_KEY"
```

#### Response

```json
{
  "experience": "agentpay",
  "display_name": "Agent Pay",
  "actions": [
    {
      "name": "request_payment",
      "summary": "Ask the customer to pay a payment request.",
      "fields": {
        "checkout_url": {
          "type": "url",
          "required": true
        },
        "title": {
          "type": "string",
          "max": 64,
          "required": false
        },
        "note": {
          "type": "string",
          "max": 120,
          "required": false
        }
      }
    }
  ]
}
```
