{ "data": { "id": 48, "name": "My Signal Name", "description": "The description of my signal.", "desired_geo_grain": "State", "desired_time_grain": "Week", "start_at": "01/26/2020", "end_at": "05/31/2020", "created_at": "06/03/2020", "updated_at": "06/03/2020", "deleted_at": null, "output": { "json": "https://app.readysignal.com/api/signals/48/output?format=json" }, "links": { "self": "https://app.readysignal.com/signal/48/manage", "manage": "https://app.readysignal.com/signal/48/manage" }, "status": "Ready", "error_message": "" } }
4. GET My Signal Output
To get the output of the specified signal.
The resulting data is paginated every 1000 records. You can use the “page” query string to get data from other pages. You can also see other pagination metadata on the JSON payload.
Request
GET
/signals/{Signal_ID}/output
Query Strings
Page
Integer | Optional | The number of the pagination page
Ready Signal analyzes your data to identify and recommend external factors like weather, economic, and demographic trends that impact your unique business every day. There are two types of methods to start an Auto Discovery: Array or File. Currently Auto Discovery is working with “Month” and “Day” time grains, so all dates must be the first day of each month. Auto Discovery processing is asynchronous.
You have four ways to know when the signal processing has been completed:
You can track the status from the Dashboard;
A email is send by Ready Signal when processing is complete;
Verify by API the status processing using My Signal Details endpoint;
Passing a URL in the callback_url parameter so that Ready Signal can notify your system by send a GET request with parameter signal_id in query string.
Request
POST
/auto-discovery/array
Parameters
callback_url
URL | Optional | Callback url when the Auto Discovery process finish
geo_grain
“State” or “Country” | Required | Geo Grain type
date_grain
“Day” or “Month” | Required | Date Grain type
create_custom_features
“0” or “1” | Optional | Numeric
data
Array of Data object | Required | An array of data object
Data Object
Date
Date | Required | Default date format “Y-m-01”
Value
Numeric | Required | Numeric value
State
String | Required if geo_grain is “State” | State abreviation (AK, IN)
Headers
Accept
application/json
Content-Type
application/json
Authorization
Bearer {token}
5.1 POST Array Input
Send a array of objects to process Auto Discovery.