get_sdk_method
Retrieve JS SDK method usage information for NicePay payment integration, including parameters and implementation examples for methods like requestPay and cancelPay.
Instructions
JS SDK 메서드 정보를 조회합니다. AUTHNICE.requestPay() 등의 메서드 사용법을 제공합니다.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| method_name | Yes | 조회할 SDK 메서드 이름 (예: "requestPay", "cancelPay" 등) | 
Input Schema (JSON Schema)
{
  "properties": {
    "method_name": {
      "description": "조회할 SDK 메서드 이름 (예: \"requestPay\", \"cancelPay\" 등)",
      "type": "string"
    }
  },
  "required": [
    "method_name"
  ],
  "type": "object"
}