Get a recurring donation
This GET
operation retrieves a recurring donation. If successful, you receive an HTTP response code of 200
and a JSON
response containing the recurring donation information.
See HTTP response codes for other response codes. |
GET /sqs/api/recurringDonations/<id>
HEADER INFO
authorisation: HTTP Basic Auth
tenant: <tenantName>
accept: application/JSON
permissions: SQS_RECURRING_DONATION_READ_PERMISSION
URL parameters
Parameter | Description |
---|---|
|
The auto-assigned identifier that was given to the recurring donation upon creation. |
JSON response
The JSON
response includes the information about the recurring donation including the donorId
and groupId
.
See recurring donation data type descriptions for more details on the fields in the JSON request and response. |
{
"id": "E5B412",
"donorId": "0871234567",
"donorPlanId": 11224455,
"groupId": "ABC123",
"created": "2019-08-07T15:01:58.000+0000",
"updated": "2019-08-07T15:01:58.000+0000"
}
SQS recurring donations data type descriptions
Field | Type | Description | ||
---|---|---|---|---|
|
string |
The auto-assigned ID given to the recurring donation upon creation. |
||
|
string |
The MSISDN of the donor subscriber.
|
||
|
integer |
The ID of the donor’s shareable plan. |
||
|
string |
The unique ID of the group. Group IDs are auto-assigned upon creation. |
||
|
string |
The date and time at which the group was created.
|
||
|
string |
The date and time at which the group was updated.
|
HTTP response codes
Code | Description | ||||
---|---|---|---|---|---|
|
success! |
||||
|
Multistatus response
|
||||
|
malformed request |
||||
|
unauthorised; bad username or password |
||||
|
forbidden; user does not have appropriate privileges |
||||
|
recurring donation not found |
||||
|
conflict with target resource
|
||||
|
failed validation; this typically means that a property was not set or a value is out of range. example
|
||||
|
failed processing (after passing validation). example
Example 1. SQS response codes
|
||||
|
internal error |
||||
|
request rejected due to overload |