blob: c2af20fc5a31c00d195f607cab4f23eea43bca87 (
plain)
1
2
3
|
#!/bin/bash
WORD_ID=$1
curl -s --ciphers DEFAULT@SECLEVEL=1 -X PUT https://info-car.pl/api/word/word-centers/exam-schedule -H "Content-type: application/json" -d '{"category":"A","wordId":"'${WORD_ID}'","startDate":"2026-03-14T11:59:11.990Z","endDate":"2026-05-15T10:59:11.990Z"}' -H "Accept: application/json, text/plain, */*" -H "Authorization: $(cat token)"
|