-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetuser-json.sh
53 lines (41 loc) · 1.01 KB
/
setuser-json.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
#API login info
apiuser='username'
apipass='password'
jamfProURL="https://myjamfpro:8443"
ComputerName=$1
getUser=$2
#update via serial number
apiURL="JSSResource/computers/name"
#XML header stuff
xmlHeader="<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>"
#API data load
#apiData="<computer><location><username>$getUser</username></location></computer>"
apiData="{
\"computer\": {
\"extension_attributes\": [
{
\"id\": 69,
\"name\": \"Availability\",
\"type\": \"String\",
\"value\": \"Yes\"
},
{
\"id\": 67,
\"name\": \"DateOut\",
\"type\": \"Date\",
\"value\": \"11/26/81\"
},
{
\"id\": 68,
\"name\": \"DateReturned\",
\"type\": \"Date\",
\"value\": \"11/26/81\"
}
]
}
}"
curl -sSkiu ${apiuser}:${apipass} "${jamfProURL}/${apiURL}/${ComputerName}" \
-H "Content-Type: text/xml" \
-d "${xmlHeader}${apiData}" \
-X PUT > /dev/null