| All Verbs | /accounts/ticklers/get |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ApiToken | query | string | No | |
| AccountId | query | string | No | |
| ActiveTicklersOnly | query | bool | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Status | form | string | No | |
| Message | form | string | No | |
| TicklerCount | form | int | No | |
| Ticklers | form | List<Tickler> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ticklerId | form | string | No | |
| caseId | form | string | No | |
| ticklerTypeId | form | int | No | |
| accountNum | form | string | No | |
| collectorId | form | int | No | |
| collectorName | form | string | No | |
| dueDate | form | DateTime | No | |
| dueHour | form | string | No | |
| dueDateString | form | string | No | |
| dueTimeString | form | string | No | |
| completionDate | form | DateTime? | No | |
| SnoozeUntil | form | DateTime? | No | |
| SnoozeUntilHour | form | string | No | |
| description | form | string | No | |
| priority | form | int | No | |
| enablePopup | form | bool | No | |
| debtor | form | string | No | |
| notes | form | string | No | |
| repeats | form | string | No | |
| isRepeating | form | bool | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /accounts/ticklers/get HTTP/1.1
Host: app.simplicitycollect.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ApiToken: String,
AccountId: String,
ActiveTicklersOnly: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Status: String,
Message: String,
TicklerCount: 0,
Ticklers:
[
{
ticklerId: String,
caseId: String,
ticklerTypeId: 0,
accountNum: String,
collectorId: 0,
collectorName: String,
dueDate: 0001-01-01,
dueHour: String,
dueDateString: String,
dueTimeString: String,
completionDate: 0001-01-01,
SnoozeUntil: 0001-01-01,
SnoozeUntilHour: 0,
description: String,
priority: 0,
enablePopup: False,
debtor: String,
notes: String,
repeats: String,
isRepeating: True
}
]
}