User
사용자 관련 API
UUID로 사용자 정보를 조회합니다
Header parameters
x-api-keystringRequiredDefault:
API Key
TEST_API_KEYExample: TEST_API_KEYBody
uuidstringRequiredDefault:
사용자 UUID
40115395-195e-4c14-b5f4-261f13da353eExample: 40115395-195e-4c14-b5f4-261f13da353eResponses
200
사용자 정보 조회 성공
application/json
401
인증 실패
404
사용자를 찾을 수 없음
post
/tikkly-b2c/user/mePOST /tikkly-b2c/user/me HTTP/1.1
Host: api-b2c.tikkly.io
x-api-key: TEST_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"uuid": "40115395-195e-4c14-b5f4-261f13da353e"
}{
"statusCode": 200,
"message": "Success",
"data": {
"id": 1,
"uuid": "40115395-195e-4c14-b5f4-261f13da353e",
"email": "[email protected]",
"nickname": "똑부러진앙지13776",
"createdAt": "2025-09-04T09:09:24.390Z"
}
}UUID로 사용자 계정을 삭제합니다
Header parameters
x-api-keystringRequiredDefault:
API Key
TEST_API_KEYExample: TEST_API_KEYBody
uuidstringRequiredDefault:
사용자 UUID
40115395-195e-4c14-b5f4-261f13da353eExample: 40115395-195e-4c14-b5f4-261f13da353eResponses
200
회원 삭제 성공
application/json
401
인증 실패
404
사용자를 찾을 수 없음
post
/tikkly-b2c/user/deletePOST /tikkly-b2c/user/delete HTTP/1.1
Host: api-b2c.tikkly.io
x-api-key: TEST_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"uuid": "40115395-195e-4c14-b5f4-261f13da353e"
}{
"statusCode": 200,
"message": "Success"
}Privy DID로 사용자 존재 여부를 확인합니다
Header parameters
x-api-keystringRequiredDefault:
API Key
TEST_API_KEYExample: TEST_API_KEYBody
privyDidstringRequiredExample:
확인할 Privy DID
did:privy:alice_001Responses
200
조회 성공
application/json
401
인증 실패
post
/tikkly-b2c/user/is-existsPOST /tikkly-b2c/user/is-exists HTTP/1.1
Host: api-b2c.tikkly.io
x-api-key: TEST_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"privyDid": "did:privy:alice_001"
}{
"statusCode": 200,
"message": "Success",
"data": {
"exists": true
}
}닉네임 사용 가능 여부를 확인합니다
Header parameters
x-api-keystringRequiredDefault:
API Key
TEST_API_KEYExample: TEST_API_KEYBody
nicknamestringRequiredExample:
검증할 닉네임
nickname_testResponses
200
검증 성공
application/json
401
인증 실패
post
/tikkly-b2c/user/nickname/validatePOST /tikkly-b2c/user/nickname/validate HTTP/1.1
Host: api-b2c.tikkly.io
x-api-key: TEST_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 28
{
"nickname": "nickname_test"
}{
"statusCode": 200,
"message": "Success",
"data": {
"isValid": true,
"message": "사용 가능한 닉네임입니다"
}
}UUID로 사용자의 닉네임을 변경합니다
Header parameters
x-api-keystringRequiredDefault:
API Key
TEST_API_KEYExample: TEST_API_KEYBody
uuidstringRequiredExample:
사용자 UUID
40115395-195e-4c14-b5f4-261f13da353enicknamestringRequiredExample:
새로운 닉네임
nickname_testResponses
200
닉네임 변경 성공
application/json
400
잘못된 요청
401
인증 실패
404
사용자를 찾을 수 없음
post
/tikkly-b2c/user/nickname/modifyPOST /tikkly-b2c/user/nickname/modify HTTP/1.1
Host: api-b2c.tikkly.io
x-api-key: TEST_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 74
{
"uuid": "40115395-195e-4c14-b5f4-261f13da353e",
"nickname": "nickname_test"
}{
"statusCode": 200,
"message": "Success"
}