엑셀 파라미터 세팅

URL
api.hashscraper.com/api/set_excel_param
요청방식
POST
Port
80
Status
ACTIVE

Header

Key Required Value
Content-Type 필수 multipart/form-data; version=2

Parameter

Key Required Description
api_key 필수 해시스크래퍼 API 키 (API키는 오른쪽 위 프로필을 누르신후 내 정보에 가시면 얻을수 있습니다.)
schedule_id 필수 Schedule Id
excel_file 필수 로컬 엑셀 파일 경로 및 type(application/vnd.openxmlformats-officedocument.spreadsheetml.sheet) 입력
.xlsx 또는 .xls 파일

샘플코드

  • cURL
  • Ruby
  • Python
  • NodeJS
  • PHP
  • Java
curl -X POST \
  -H "Content-Type: multipart/form-data; version=2" \
  -F "api_key=YOUR_API_KEY" \
  -F "schedule_id=YOUR_SCHEDULE_ID" \
  -F "excel_file=@YOUR_LOCAL_EXCEL_FILE_PATH;type=application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" \
  'api.hashscraper.com/api/set_excel_param'

              

API 응답 샘플

{
  "result": "success",
  "version": "v2",
  "schedule_id": "YOUR_SCHEDULE_ID",
  "file_name": "excel_param_example.xlsx",
  "message": "Excel Parameter saved successfully"
}