-
Notifications
You must be signed in to change notification settings - Fork 5
/
OrderCustomField_create_response.json
59 lines (59 loc) · 1.55 KB
/
OrderCustomField_create_response.json
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
54
55
56
57
58
59
{
"title": "Order",
"description": "JSON schema for Order Custom Filed. Endpoint: https://api.route4me.com/api.v4/order_custom_user_fields.php",
"type": "object",
"properties": {
"result": {
"type": "string",
"title": "Result",
"description": "If the order custom field created, equals to 'OK'"
},
"affected": {
"type": "integer",
"title": "Affected",
"description": "How many custom order fields were affected."
},
"data": {
"type": "object",
"properties": {
"order_custom_field_id": {
"type": "integer",
"title": "Order Custom Field ID",
"description": "Order custom field ID."
},
"order_custom_field_name": {
"type": "string",
"title": "Order Custom Field Name",
"description": "Order custom field name"
},
"order_custom_field_type": {
"type": "string",
"title": "Order Custom Field Type",
"description": "Order custom field type (default: 'checkbox')"
},
"order_custom_field_label": {
"type": "string",
"title": "Order Custom Field Label",
"description": "Order custom field label"
},
"order_custom_field_type_info": {
"type": "object",
"properties": {
"short_label": {
"type": "string",
"title": "Short Label",
"description": "Short label"
}
},
"title": "Order Custom Field Type Info",
"description": "Order custom field type info"
},
"root_owner_member_id": {
"type": "integer",
"title": "Root Owner Member ID",
"description": "Root owner member ID"
}
}
}
}
}