엣지 개발자 플랫폼
  • 엣지 이미지 렌더링
    • 제품 프로필
    • 빠른 시작
    • 개발 가이드
      • 개요
      • 서명 URL
      • API를 통해 생성
    • 오픈 API
      • 개요
      • API 개요
      • 인터페이스 목록
        • 계정 인증
        • 템플릿 목록 가져오기
        • 템플릿 예시 보기
        • 이미지 서명 URL 받기
    • 일반적인 문제
이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

템플릿 예시 보기

Interface description

Request Domain: image.edgeone.app.
Retrieve the template information under the user's account for the specified Template ID.
:
1. All interfaces require ApiKey + UserId for API authentication. The API Key is your private key. Please avoid leaking the API Key when invoking the API.
2. The RequestId in the response can be used for tracing and troubleshooting issues.

URL Path

/api/v1/DescribeTemplate

Request method

POST

Request headers

Content-Type: application/json

Request parameters

Parameter Name
Type
Required
Description
ApiKey
string
Yes
User's `ApiKey`
UserId
string
Yes
User ID
Id
string
Yes
Template ID

Response data type

JSON

Sample response

{
"code": 0,
"data": {
"Response": {
// ... Template Instance Details ...
}
},
"message": "ok",
"requestId": "01889e9f-xxxx-xxxx-xxxx-xxxx"
}

Field description

code (int): Response status code, 0 indicates success.
data (object): Object containing the actual response data.
Response (object): Actual business response data.
Id (string): Template ID.
Name (string): Template Name.
Description (string): Template Description.
Format (string): Template Format.
Size (string): Template Size.
TemplateVariables (string): Template Variables, JSON format string.
PreviewUrl (string): Template Preview URL.
CreatedTime (string): Creation time.
UpdatedTime (string): Update time.
AuditStatus (string): Audit status, 'normal' means normal, 'abnormal' means abnormal.
message (string): Response message.
requestId (string): Request ID.