Glowb Dev Docs
Main API멤버 API

GET /member/data/{member_id}/{email}

인플루언서 계정 조회

인플루언서 계정 조회

인플루언서의 이름, 권한, ID를 조회합니다.

항목
메서드GET
경로/member/data/{member_id}/{email}
인증불필요

요청

GET /member/data/user123/user@example.com HTTP/1.1
Host: api.glowb.com
curl "https://api.glowb.com/member/data/user123/user@example.com"
const response = await fetch(`/member/data/${memberId}/${email}`);
const tokenData = await response.json();

Path Parameters

Prop

Type

응답

성공 응답 (200 OK)

{
  "id": "user_id",
  "accessToken": "eyJhbGciOiJIUzI1NiIs...",
  "refreshToken": "eyJhbGciOiJIUzI1NiIs...",
  "isNewUser": false
}

Response 스키마 (TokenDto)

Prop

Type

API 테스트

On this page