docs/experienceEndpoint.md in losant_rest-1.9.1 vs docs/experienceEndpoint.md in losant_rest-1.9.2
- old
+ new
@@ -6,10 +6,11 @@
##### Contents
* [Delete](#delete)
* [Get](#get)
+* [Linked Resources](#linked-resources)
* [Patch](#patch)
<br/>
## Delete
@@ -81,9 +82,51 @@
#### Successful Responses
| Code | Type | Description |
| ---- | ---- | ----------- |
| 200 | [Experience Endpoint](_schemas.md#experience-endpoint) | Experience endpoint information |
+
+#### Error Responses
+
+| Code | Type | Description |
+| ---- | ---- | ----------- |
+| 400 | [Error](_schemas.md#error) | Error if malformed request |
+| 404 | [Error](_schemas.md#error) | Error if experience endpoint was not found |
+
+<br/>
+
+## Linked Resources
+
+Retrieves information on resources linked to an experience endpoint
+
+```ruby
+result = client.experience_endpoint.linked_resources(
+ applicationId: my_application_id,
+ experienceEndpointId: my_experience_endpoint_id)
+
+puts result
+```
+
+#### Authentication
+The client must be configured with a valid api access token to call this
+action. The token must include at least one of the following scopes:
+all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, experienceEndpoint.*, or experienceEndpoint.linkedResources.
+
+#### Available Parameters
+
+| Name | Type | Required | Description | Default | Example |
+| ---- | ---- | -------- | ----------- | ------- | ------- |
+| applicationId | string | Y | ID associated with the application | | 575ec8687ae143cd83dc4a97 |
+| experienceEndpointId | string | Y | ID associated with the experience endpoint | | 575ed78e7ae143cd83dc4aab |
+| version | string | N | Version of this experience endpoint to query | develop | develop |
+| includeCustomNodes | string | N | If the result of the request should also include the details of any custom nodes referenced by returned workflows | false | true |
+| losantdomain | string | N | Domain scope of request (rarely needed) | | example.com |
+
+#### Successful Responses
+
+| Code | Type | Description |
+| ---- | ---- | ----------- |
+| 200 | [Experience Linked Resources](_schemas.md#experience-linked-resources) | Linked resource information |
#### Error Responses
| Code | Type | Description |
| ---- | ---- | ----------- |