get_code_sample
Retrieve code samples for NicePay API integration across multiple programming languages to implement payment processing features like payment window calls, authentication, and transaction approval.
Instructions
나이스페이 API 사용 예시 코드를 제공합니다. 언어별로 코드 샘플을 조회할 수 있습니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | 코드 샘플을 찾을 주제 (예: "결제창 호출", "Basic 인증", "결제 승인" 등) | |
| language | No | 언어 (선택사항, 예 "javascript", "python", "curl" 등) |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "언어 (선택사항, 예 \"javascript\", \"python\", \"curl\" 등)",
"type": "string"
},
"topic": {
"description": "코드 샘플을 찾을 주제 (예: \"결제창 호출\", \"Basic 인증\", \"결제 승인\" 등)",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}