# Direcciones
Address {
country string
state string
city string
street string
number string
floor string
apt string
postal_code string
details string
type string
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Configuraciones
Config{
cxense_site_id integer
cxense_persisted_query_id string
navigation_roles [string]
walls {
softwall integer
loginwall integer
middlewall integer
paywall integer
incognito integer
adblocker integer
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Tarjeta de credito
CreditCard{
holder string
identification_type string
identification_number string
type string
number integer
expiration_date string
}
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# Codigo Familiar
FamilyCode{
id integer
parent_subscription_id integer
subscription_id integer
parent_is_active boolean
status string
code string
parent_available_invitations integer
adherent_email string
adherent_first_name string
adherent_last_name string
invitation_date string
used_at string
}
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
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
# Pagos
Payment{
id integer
status string
external_payment_id string
transaction_id string
reference_code string
gateway string
currency string
amount float
created_at string
updated_at string
description string
subscription Subscription{
id integer
status string
is_active boolean
family_codes integer
child_subscription boolean
parent_subscription_id integer
has_benefit_card boolean
on_promotion boolean
cancellation_date string
created_at string
updated_at string
subscriber Subscriber{
id integer
user_id integer
first_name string
last_name string
email string
phone string
identification_type string
identification_number integer
created_at string
updated_at string
addresses [Address{
country string
state string
city string
street string
number string
floor string
apt string
postal_code string
details string
type string
}]
}
resource Resource{
id integer
code string
name string
price float
promotional_price float
promotional_months integer
active_from string
active_to string
has_benefit_card boolean
family_codes integer
visible boolean
block_plan boolean
color string
custom_description string
}
resource Resource{
subscription_id integer
subject_id integer
current_resource_code string
current_resource_name string
current_resource_price float
current_resource_promotional_price float
current_resource_promotional_months integer
current_resource_has_benefit_card boolean
current_resource_family_codes integer
old_resource_code string
old_resource_name string
old_resource_price float
old_resource_promotional_price float
old_resource_promotional_months integer
old_resource_has_benefit_card boolean
old_resource_family_codes integer
created_at string
}
card CreditCard{
holder string
identification_type string
identification_number string
type string
number integer
expiration_date string
}
}
}
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# Recursos
Resource{
id integer
code string
name string
price float
promotional_price float
promotional_months integer
active_from string
active_to string
has_benefit_card boolean
family_codes integer
visible boolean
block_plan boolean
color string
custom_description string
}
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
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
# Recursos
Resource{
subscription_id integer
subject_id integer
current_resource_code string
current_resource_name string
current_resource_price float
current_resource_promotional_price float
current_resource_promotional_months integer
current_resource_has_benefit_card boolean
current_resource_family_codes integer
old_resource_code string
old_resource_name string
old_resource_price float
old_resource_promotional_price float
old_resource_promotional_months integer
old_resource_has_benefit_card boolean
old_resource_family_codes integer
created_at string
}
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
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
# Susbscriptor
Subscriber{
id integer
user_id integer
first_name string
last_name string
email string
phone string
identification_type string
identification_number integer
created_at string
updated_at string
addresses [
Address{
country string
state string
city string
street string
number string
floor string
apt string
postal_code string
details string
type string
}]
}
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
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
# Subscripcion
Subscription{
id integer
status string
is_active boolean
family_codes integer
child_subscription boolean
parent_subscription_id integer
has_benefit_card boolean
on_promotion boolean
cancellation_date string
created_at string
updated_at string
subscriber Subscriber{
id integer
user_id integer
first_name string
last_name string
email string
phone string
identification_type string
identification_number integer
created_at string
updated_at string
addresses [...]
}
resource Resource{
id integer
code string
name string
price float
promotional_price float
promotional_months integer
active_from string
active_to string
has_benefit_card boolean
family_codes integer
visible boolean
block_plan boolean
color string
custom_description string
}
resource Resource{
subscription_id integer
subject_id integer
current_resource_code string
current_resource_name string
current_resource_price float
current_resource_promotional_price float
current_resource_promotional_months integer
current_resource_has_benefit_card boolean
current_resource_family_codes integer
old_resource_code string
old_resource_name string
old_resource_price float
old_resource_promotional_price float
old_resource_promotional_months integer
old_resource_has_benefit_card boolean
old_resource_family_codes integer
created_at string
}
card CreditCard{
holder string
identification_type string
identification_number string
type string
number integer
expiration_date string
}
}
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Usuario
User{
id integer
email string
first_name string
last_name string
avatar string
phone_prefix string
phone_number string
gender string
birth_date string
identification_type string
identification_number integer
provider string
created_at string
updated_at string
banned_at string
deleted_at string
}
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
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
# Usuario post
User [POST]{
first_name string
title: first_name
example: John
last_name string
title: last_name
example: Doe
email string
title: email
example: user@example.com
password string
title: password
example:
phone_prefix string
title: phone_prefix
example: +54351
phone_number string
title: phone_number
example: 1599685
identification_type string
title: identification_type
example: Cedula
identification_number string
title: identification_number
example: 6998546
birth_date string
title: birth_date
example: 1970-01-23
gender string
title: gender
example: female|male|null
avatar string
title: avatar
example: https://api.adorable.io/avatars/285/abott@adorable.png
newsletter_opt_in boolean
title: newsletter_opt_in
example: false
Acepta recibir comunicaciones
country string
title: country
example: AR
site string
title: site
example: Diario
}
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
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