You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pclass="firstline">Writes recall bits for the device where Play Integrity API token is obtained. The endpoint is available to select Play partners in an early access program (EAP).</p>
<pre>Writes recall bits for the device where Play Integrity API token is obtained. The endpoint is available to select Play partners in an early access program (EAP).
92
+
93
+
Args:
94
+
packageName: string, Required. Package name of the app the attached integrity token belongs to. (required)
95
+
body: object, The request body.
96
+
The object takes the form of:
97
+
98
+
{ # Request to write device recall bits.
99
+
"integrityToken": "A String", # Required. Integrity token obtained from calling Play Integrity API. Note that the integrity token contains the existing device recall bits. The write will only succeed if those bits in the integrity token are up to date.
100
+
"newValues": { # Contains the recall bits values. # Required. The new values for the device recall bits to be written.
101
+
"bitFirst": True or False, # Required. First recall bit value.
102
+
"bitSecond": True or False, # Required. Second recall bit value.
103
+
"bitThird": True or False, # Required. Third recall bit value.
104
+
},
105
+
}
106
+
107
+
x__xgafv: string, V1 error format.
108
+
Allowed values
109
+
1 - v1 error format
110
+
2 - v2 error format
111
+
112
+
Returns:
113
+
An object of the form:
114
+
115
+
{ # Response for the Write Device Recall action. Currently empty.
Copy file name to clipboardExpand all lines: googleapiclient/discovery_cache/documents/playintegrity.v1.json
+73-1Lines changed: 73 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,38 @@
105
105
},
106
106
"protocol": "rest",
107
107
"resources": {
108
+
"deviceRecall": {
109
+
"methods": {
110
+
"write": {
111
+
"description": "Writes recall bits for the device where Play Integrity API token is obtained. The endpoint is available to select Play partners in an early access program (EAP).",
112
+
"flatPath": "v1/{v1Id}/deviceRecall:write",
113
+
"httpMethod": "POST",
114
+
"id": "playintegrity.deviceRecall.write",
115
+
"parameterOrder": [
116
+
"packageName"
117
+
],
118
+
"parameters": {
119
+
"packageName": {
120
+
"description": "Required. Package name of the app the attached integrity token belongs to.",
"description": "Contains the recall bits values.",
529
+
"id": "Values",
530
+
"properties": {
531
+
"bitFirst": {
532
+
"description": "Required. First recall bit value.",
533
+
"type": "boolean"
534
+
},
535
+
"bitSecond": {
536
+
"description": "Required. Second recall bit value.",
537
+
"type": "boolean"
538
+
},
539
+
"bitThird": {
540
+
"description": "Required. Third recall bit value.",
541
+
"type": "boolean"
542
+
}
543
+
},
544
+
"type": "object"
545
+
},
546
+
"WriteDeviceRecallRequest": {
547
+
"description": "Request to write device recall bits.",
548
+
"id": "WriteDeviceRecallRequest",
549
+
"properties": {
550
+
"integrityToken": {
551
+
"description": "Required. Integrity token obtained from calling Play Integrity API. Note that the integrity token contains the existing device recall bits. The write will only succeed if those bits in the integrity token are up to date.",
552
+
"type": "string"
553
+
},
554
+
"newValues": {
555
+
"$ref": "Values",
556
+
"description": "Required. The new values for the device recall bits to be written."
557
+
}
558
+
},
559
+
"type": "object"
560
+
},
561
+
"WriteDeviceRecallResponse": {
562
+
"description": "Response for the Write Device Recall action. Currently empty.",
0 commit comments