Glowb Dev Docs
SaaS API전자계약 API

GET /ai/contract/signature

인플루언서의 저장된 대표 서명 이미지 URL을 조회합니다.

저장된 서명 조회

인플루언서의 저장된 대표 서명 이미지 URL을 조회합니다. 이전에 저장한 서명이 있으면 계약 서명 시 재사용할 수 있습니다.

항목
메서드GET
경로/ai/contract/signature
인증Bearer Token (크리에이터)

요청

GET /ai/contract/signature HTTP/1.1
Host: api.glowb.com
Authorization: Bearer {access_token}
curl -X GET "https://api.glowb.com/ai/contract/signature" \
  -H "Authorization: Bearer {access_token}"
const response = await fetch('/ai/contract/signature', {
  headers: {
    'Authorization': `Bearer ${accessToken}`,
  },
});
const result = await response.json();

응답

성공 응답 - 서명이 있는 경우 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "서명 조회가 완료되었습니다.",
  "data": "https://s3.../influence/signature/42/1708926645.png"
}

성공 응답 - 서명이 없는 경우 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "서명 조회가 완료되었습니다.",
  "data": null
}

응답 필드

Prop

Type

API 테스트

On this page