Guides
Programs and Applications
Check Available Programs
Sharable Cash assigns each Facilitator to at least one Program.
To check what Programs are available for you, use the following request:
GET /programs
//Sample response
{
"paging": {
"page_size": 50,
"page_number": 1,
"total_count": 1,
"last_evaluated_key": null
},
"data": [
{
"program_id": "prm_gffshiRdalN7Iabc",
"program_name": "CashConnect",
"program_description": "CashConnect sharing program.",
"program_display_name": "CashConnect",
"created_by": "SYSTEM",
"created_date_time": "2023-03-02T16:09:00",
"modified_by": "SYSTEM",
"modified_date_time": "2023-03-02T16:09:00"
}
],
"errors": null
}
As you see in the example, the Facilitator is assigned to one Program named "CashConnect."
Check Available Applications
To check what Applications are available within your Program, use the following request:
GET /programs/{program_id}/applications
//Sample response:
{
"paging": {
"page_size": 50,
"page_number": 1,
"total_count": 1,
"last_evaluated_key": null
},
"data": [
{
"application_id": "app_97lZr7G7efm2tW57",
"application_name": "DirectSharingApp1",
"application_display_name": "Direct Sharing Application 1",
"application_description": "Created for test purposes as a test application #1.",
"created_by": "SYSTEM",
"created_date_time": "2023-02-15T17:41:26.47",
"modified_by": "SYSTEM",
"modified_date_time": "2023-02-15T17:41:26.47"
}
],
"errors": null
}