Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AllTalk API 호출 시 apikey 헤더 인증 방법
apikey
service
groupId
apikey: {API_KEY} Content-Type: application/json
curl -X POST https://api.alltalk.co.kr/alimTalk \ -H "apikey: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d @payload.json
import axios from 'axios'; await axios.post('https://api.alltalk.co.kr/alimTalk', talkData, { headers: { apikey: process.env.ALLTALK_API_KEY }, });
import os import requests requests.post( 'https://api.alltalk.co.kr/alimTalk', json=talk_data, headers={'apikey': os.environ['ALLTALK_API_KEY']}, )
ERR_100
authToken
ERR_102