list_member_class_category


GET /list_member_class_category

To get the TOTAL COUNT of the list of class categories for students.

Use this method FIRST to determine how many total records there are.

After you call this method, then call the method below, and pass the required paging parameters.

/list_member_class_category?token=XXXXX

field description
token Credentials provided by Powersoft that allow access to the API

Returns

		{
			"api_response": {
				"response_code": "1",
				"response_msg": "OK",
				"response_id": ""
			},
			"total_count_member_class_categories": 2
		}
	   


GET /list_member_class_category

To get a list of class categories for students.

/list_member_class_category?token=XXXXX&page_number=1&page_size=10

field description
token Credentials provided by Powersoft that allow access to the API
page_number The page number in the entire list. eg Page 1
page_size The number of rows to return. eg 10 rows

Returns

		{
			"api_response": {
				"response_code": "1",
				"response_msg": "OK",
				"response_id": ""
			},
			"list_member_class_category": [
				{
					"pk_FieldDetailID": 7,
					"class_category_code_365": "01",
					"class_category_name": "DANCE",
					"class_category_secondary_code": "01",
					"colour_html": "#E20EC2"
				},
				{
					"pk_FieldDetailID": 10,
					"class_category_code_365": "02",
					"class_category_name": "PILATES",
					"class_category_secondary_code": "02",
					"colour_html": "#F14F01"
				}
			]
		}