15 lines
458 B
Bash
Executable File
15 lines
458 B
Bash
Executable File
#!/bin/bash
|
|
# Query: salaryFrequencySetup - Salary frequency configuration
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "${SCRIPT_DIR}/../apikey"
|
|
|
|
curl -s -X POST "https://graphql.ordrestyring.dk/graphql" \
|
|
-H "Content-Type: application/json" \
|
|
-H "Authorization: Bearer ${API_KEY}" \
|
|
--data-binary @- <<'EOF' | jq '.'
|
|
{
|
|
"query": "query GetSalaryFrequencySetup { salaryFrequencySetup { id frequency startDate endDate } }"
|
|
}
|
|
EOF
|