Skip to content

Commit

Permalink
0.106.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed May 16, 2022
1 parent a4edd01 commit c214964
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
15 changes: 9 additions & 6 deletions docs/message-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ This endpoint is available at
with a number of query parameters to select the message events to return.

The query parameters are:
- `from`: starting time for a time range, to list message events for a specific time
- `to`: end time for a time range, to list message events for a specific time
- `modems`, `devices`: list message events for the given modem(s) only, comma-separated list of modem numbers
- `tags`, `groups`: list message events for modems with the given tag(s) only, comma-separated list of tag names
- `size`: the amount of message events to return per page
- `page`: the page to return
- `from` (timestamp): starting time for a time range, to list message events for a specific time
- `to` (timestamp): end time for a time range, to list message events for a specific time
- `modems`, `devices` (text, default all): list message events for the given modem(s) only, comma-separated list of modem numbers
- `tags`, `groups` (text): list message events for modems with the given tag(s) only, comma-separated list of tag names
- `size` (integer, default 10): the amount of message events to return per page
- `page` (integer, default 0): the page to return

Don't forget the auth token as described in the main [readme](../README.md#auth).

Since modem numbers are often "AAAA BBBB", the space can be omitted when using this call (and anywhere else in the API).

We support a number of different timestamp formats, but regardless of input we output time as
[ISO-8601](https://www.iso.org/iso-8601-date-and-time-format.html) `YYYY-MM-DDTHH:mm:ss.sssZ`.

### Output format

The output is an object with two fields.
Expand Down
15 changes: 9 additions & 6 deletions docs/messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ This endpoint is available at
with a number of query parameters to select the messages to return.

The query parameters are:
- `from`: starting time for a time range, to list messages for a specific time
- `to`: end time for a time range, to list messages for a specific time
- `modems`, `devices`: list messages for the given modem(s) only, comma-separated list of modem numbers
- `tags`, `groups`: list messages for modems with the given tag(s) only, comma-separated list of tag names
- `size`: the amount of messages to return per page
- `page`: the page to return
- `from` (timestamp): starting time for a time range, to list messages for a specific time
- `to` (timestamp): end time for a time range, to list messages for a specific time
- `modems`, `devices` (text, default all): list messages for the given modem(s) only, comma-separated list of modem numbers
- `tags`, `groups` (text): list messages for modems with the given tag(s) only, comma-separated list of tag names
- `size` (integer, default 10): the amount of messages to return per page
- `page` (integer, default 0): the page to return

Don't forget the auth token as described in the main [readme](../README.md#auth).

Since modem numbers are often "AAAA BBBB", the space can be omitted when using this call (and anywhere else in the API).

We support a number of different timestamp formats, but regardless of input we output time as
[ISO-8601](https://www.iso.org/iso-8601-date-and-time-format.html) `YYYY-MM-DDTHH:mm:ss.sssZ`.

### Output format

The output is an object with two fields.
Expand Down

0 comments on commit c214964

Please sign in to comment.