For the complete documentation index, see llms.txt. This page is also available as Markdown.

Separate Storage

Process Customer Center Data Separation Storage

post

Function Description

  • Migrates and masks the personal information of withdrawn members.


Detailed Description

  • Migrates and masks the customer center personal information of members being processed for withdrawal.


Code Reference

  • Separation storage type (separateType) : W: Withdrawal


Revision History

  • release_231228_01 : Removed dormant (S) separation storage type

Header parameters
AuthorizationanyOptional

Access Token

Body

Withdrawn Member Processing Request DTO

mbrNostringRequired

Member No.

Example: 100000001
separateTypestring · enumRequired

Separate Storage Type

Example: WPossible values:
Responses
200

Success

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

payloadstringOptional

payload

errorbooleanOptional

is error

post/v1/customerservice/withdrawalAndDormantMember
POST /api/order/v1/customerservice/withdrawalAndDormantMember HTTP/1.1
Host: api-order.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "mbrNo": "100000001",
  "separateType": "W"
}
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": "text",
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

Last updated