Showing
1 changed file
with
28 additions
and
0 deletions
@@ -91,5 +91,33 @@ public static class Response { | @@ -91,5 +91,33 @@ public static class Response { | ||
91 | } | 91 | } |
92 | ``` | 92 | ``` |
93 | 93 | ||
94 | +##### 4. 小程序领取课程提交接口 | ||
94 | 95 | ||
96 | +- URL: {{localhost}}/boxfish-online-card/order/mini/submitCourseOrder | ||
97 | +- Method: POST | ||
98 | +- RequestBody: | ||
99 | + | ||
100 | +```json5 | ||
101 | +{ | ||
102 | + // 领取人openId | ||
103 | + "openId": "openId", | ||
104 | + // 邀请人的邀请码 | ||
105 | + "invitationCode": 100000001, | ||
106 | + | ||
107 | + // 领取课程类型:体验课 = 'COURSE_EXPERIENCE', 单词课 = "COURSE_TEXTBOOK_V2_WORD" | ||
108 | + "courseType": "COURSE_EXPERIENCE", | ||
109 | + // 领取的教材版本 | ||
110 | + "versionCode": "versionCode", | ||
111 | + | ||
112 | + // 领取人信息 | ||
113 | + "orderName": "orderName", | ||
114 | + "orderMobile": "orderMobile", | ||
115 | + | ||
116 | + // 领取人地址 | ||
117 | + "orderProvince": "orderProvince", | ||
118 | + "orderCity": "orderCity", | ||
119 | + "orderCounty": "orderCounty", | ||
120 | + "orderAddressDetail": "orderAddressDetail" | ||
121 | +} | ||
122 | +``` | ||
95 | 123 |
-
Please register or login to post a comment