GET member/renew?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
MemberRenewDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| logoUrl | string |
None. |
|
| payments | Collection of MemberRenewPayment |
None. |
|
| id | globally unique identifier |
None. |
|
| memberId | globally unique identifier |
None. |
|
| memberName | string |
None. |
|
| memberPhone | string |
None. |
|
| memberImageUrl | string |
None. |
|
| branchId | globally unique identifier |
None. |
|
| branchName | string |
None. |
|
| startDate | date |
None. |
|
| endDate | date |
None. |
|
| saleNo | integer |
None. |
|
| month | integer |
None. |
|
| day | integer |
None. |
|
| timeLimited | boolean |
None. |
|
| price | decimal number |
None. |
|
| note | string |
None. |
|
| created | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"logoUrl": "sample string 1",
"payments": [
{
"price": 1.1,
"priceDiscount": 2.1,
"pricePay": 3.1,
"pricePaid": 4.1,
"typePrice": 5.1,
"typeName": "sample string 6",
"date": "2026-06-02T02:11:17.2328705+08:00"
},
{
"price": 1.1,
"priceDiscount": 2.1,
"pricePay": 3.1,
"pricePaid": 4.1,
"typePrice": 5.1,
"typeName": "sample string 6",
"date": "2026-06-02T02:11:17.2328705+08:00"
}
],
"id": "52070100-75dc-4e0c-bc54-476d9cdfc63d",
"memberId": "831704fd-733b-482a-86dd-e04e622d49f5",
"memberName": "sample string 2",
"memberPhone": "sample string 3",
"memberImageUrl": "sample string 4",
"branchId": "4ccf5f66-bd2c-4e16-a144-b9ab4e00a713",
"branchName": "sample string 5",
"startDate": "2026-06-02T02:11:17.2328705+08:00",
"endDate": "2026-06-02T02:11:17.2328705+08:00",
"saleNo": 6,
"month": 7,
"day": 8,
"timeLimited": true,
"price": 10.1,
"note": "sample string 11",
"created": "2026-06-02T02:11:17.2328705+08:00"
}
application/xml, text/xml
Sample:
<MemberRenewDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Careby.Api.Models">
<branchId>4ccf5f66-bd2c-4e16-a144-b9ab4e00a713</branchId>
<branchName>sample string 5</branchName>
<created>2026-06-02T02:11:17.2328705+08:00</created>
<day>8</day>
<endDate>2026-06-02T02:11:17.2328705+08:00</endDate>
<id>52070100-75dc-4e0c-bc54-476d9cdfc63d</id>
<memberId>831704fd-733b-482a-86dd-e04e622d49f5</memberId>
<memberImageUrl>sample string 4</memberImageUrl>
<memberName>sample string 2</memberName>
<memberPhone>sample string 3</memberPhone>
<month>7</month>
<note>sample string 11</note>
<price>10.1</price>
<saleNo>6</saleNo>
<startDate>2026-06-02T02:11:17.2328705+08:00</startDate>
<timeLimited>true</timeLimited>
<logoUrl>sample string 1</logoUrl>
<payments>
<MemberRenewPayment>
<date>2026-06-02T02:11:17.2328705+08:00</date>
<price>1.1</price>
<priceDiscount>2.1</priceDiscount>
<pricePaid>4.1</pricePaid>
<pricePay>3.1</pricePay>
<typeName>sample string 6</typeName>
<typePrice>5.1</typePrice>
</MemberRenewPayment>
<MemberRenewPayment>
<date>2026-06-02T02:11:17.2328705+08:00</date>
<price>1.1</price>
<priceDiscount>2.1</priceDiscount>
<pricePaid>4.1</pricePaid>
<pricePay>3.1</pricePay>
<typeName>sample string 6</typeName>
<typePrice>5.1</typePrice>
</MemberRenewPayment>
</payments>
</MemberRenewDetail>