pokitdok-ruby 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/lib/pokitdok.rb +27 -1
- data/pokitdok-ruby.gemspec +7 -3
- data/spec/fixtures/authorizations.json +42 -0
- data/spec/fixtures/referrals.json +36 -0
- data/spec/pokitdok_spec.rb +31 -4
- data/vcr_cassettes/activities.yml +205 -462
- data/vcr_cassettes/auth.yml +7 -45
- data/vcr_cassettes/authorizations.yml +57 -0
- data/vcr_cassettes/cash_prices.yml +12 -12
- data/vcr_cassettes/claims.yml +33 -34
- data/vcr_cassettes/claims_status.yml +25 -25
- data/vcr_cassettes/eligibility.yml +36 -36
- data/vcr_cassettes/enrollment.yml +39 -39
- data/vcr_cassettes/files.yml +15 -16
- data/vcr_cassettes/insurance_prices.yml +14 -18
- data/vcr_cassettes/payers.yml +512 -450
- data/vcr_cassettes/plans.yml +101 -652
- data/vcr_cassettes/plans_no_args.yml +100 -648
- data/vcr_cassettes/providers.yml +80 -20
- data/vcr_cassettes/referrals.yml +56 -0
- data/vcr_cassettes/trading_partners_get.yml +10 -10
- data/vcr_cassettes/trading_partners_index.yml +323 -271
- metadata +46 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b68cc8d5b31475c486190da763dd77541c526b0
|
4
|
+
data.tar.gz: 143898d79e403b12d0f8ac2833d5a11f1273d6b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 444ced8475a19870d64c6c47b49561592ee3efbda5178c35ca0ba95ddb313f9fe065ab159798906b0b7250e70b52f80ffcc05a7ccdc969693c8c394b26212449
|
7
|
+
data.tar.gz: 719d1a99ba43862f9cefeb85d872a54d94fb2f9bc265685bff270ddd70626f0fd3c8a3f5fd42006c8b941a582b0e682b44be39c8f3d67783f5688de92e389633
|
data/README.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.7.0
|
data/lib/pokitdok.rb
CHANGED
@@ -48,7 +48,7 @@ module PokitDok
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def user_agent
|
51
|
-
"pokitdok-ruby 0.
|
51
|
+
"pokitdok-ruby 0.7.0 #{RUBY_DESCRIPTION}"
|
52
52
|
end
|
53
53
|
|
54
54
|
# returns a standard set of headers to be passed along with all requests
|
@@ -72,6 +72,16 @@ module PokitDok
|
|
72
72
|
JSON.parse(response.body)
|
73
73
|
end
|
74
74
|
|
75
|
+
# Invokes the authorizations endpoint, with an optional Hash of parameters.
|
76
|
+
def authorizations(params = {})
|
77
|
+
response = @token.post('authorizations/',
|
78
|
+
headers: headers,
|
79
|
+
body: params.to_json) do |request|
|
80
|
+
request.headers['Content-Type'] = 'application/json'
|
81
|
+
end
|
82
|
+
JSON.parse(response.body)
|
83
|
+
end
|
84
|
+
|
75
85
|
# Invokes the cash prices endpoint, with an optional Hash of parameters.
|
76
86
|
def cash_prices(params = {})
|
77
87
|
response = @token.get('prices/cash',
|
@@ -160,6 +170,12 @@ module PokitDok
|
|
160
170
|
JSON.parse(response.body)
|
161
171
|
end
|
162
172
|
|
173
|
+
# Invokes the plans endpoint, with an optional Hash of parameters.
|
174
|
+
def plans(params = {})
|
175
|
+
response = @token.get('plans/', headers: headers, params: params)
|
176
|
+
JSON.parse(response.body)
|
177
|
+
end
|
178
|
+
|
163
179
|
# Invokes the providers endpoint, with an optional Hash of parameters.
|
164
180
|
def providers(params = {})
|
165
181
|
response = @token.get('providers/') do |request|
|
@@ -168,6 +184,16 @@ module PokitDok
|
|
168
184
|
JSON.parse(response.body)
|
169
185
|
end
|
170
186
|
|
187
|
+
# Invokes the referrals endpoint, with an optional Hash of parameters.
|
188
|
+
def referrals(params = {})
|
189
|
+
response = @token.post('referrals/',
|
190
|
+
headers: headers,
|
191
|
+
body: params.to_json) do |request|
|
192
|
+
request.headers['Content-Type'] = 'application/json'
|
193
|
+
end
|
194
|
+
JSON.parse(response.body)
|
195
|
+
end
|
196
|
+
|
171
197
|
# Invokes the trading partners endpoint, with an optional Hash of
|
172
198
|
# parameters.
|
173
199
|
def trading_partners(params = {})
|
data/pokitdok-ruby.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: pokitdok-ruby 0.
|
5
|
+
# stub: pokitdok-ruby 0.7.0 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "pokitdok-ruby"
|
9
|
-
s.version = "0.
|
9
|
+
s.version = "0.7.0"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["John Riney"]
|
14
|
-
s.date = "2014-
|
14
|
+
s.date = "2014-10-22"
|
15
15
|
s.description = "Gem for easy access to the PokitDok Platform APIs."
|
16
16
|
s.email = "john.riney@pokitdok.com"
|
17
17
|
s.extra_rdoc_files = [
|
@@ -30,15 +30,18 @@ Gem::Specification.new do |s|
|
|
30
30
|
"VERSION",
|
31
31
|
"lib/pokitdok.rb",
|
32
32
|
"pokitdok-ruby.gemspec",
|
33
|
+
"spec/fixtures/authorizations.json",
|
33
34
|
"spec/fixtures/claim.json",
|
34
35
|
"spec/fixtures/claims_status.json",
|
35
36
|
"spec/fixtures/enrollment.json",
|
37
|
+
"spec/fixtures/referrals.json",
|
36
38
|
"spec/fixtures/sample.270",
|
37
39
|
"spec/pokitdok_spec.rb",
|
38
40
|
"spec/spec_helper.rb",
|
39
41
|
"spec/vcr_setup.rb",
|
40
42
|
"vcr_cassettes/activities.yml",
|
41
43
|
"vcr_cassettes/auth.yml",
|
44
|
+
"vcr_cassettes/authorizations.yml",
|
42
45
|
"vcr_cassettes/cash_prices.yml",
|
43
46
|
"vcr_cassettes/claims.yml",
|
44
47
|
"vcr_cassettes/claims_status.yml",
|
@@ -50,6 +53,7 @@ Gem::Specification.new do |s|
|
|
50
53
|
"vcr_cassettes/plans.yml",
|
51
54
|
"vcr_cassettes/plans_no_args.yml",
|
52
55
|
"vcr_cassettes/providers.yml",
|
56
|
+
"vcr_cassettes/referrals.yml",
|
53
57
|
"vcr_cassettes/trading_partners_get.yml",
|
54
58
|
"vcr_cassettes/trading_partners_index.yml"
|
55
59
|
]
|
@@ -0,0 +1,42 @@
|
|
1
|
+
{
|
2
|
+
"event": {
|
3
|
+
"category": "health_services_review",
|
4
|
+
"certification_type": "initial",
|
5
|
+
"delivery": {
|
6
|
+
"quantity": 1,
|
7
|
+
"quantity_qualifier": "visits"
|
8
|
+
},
|
9
|
+
"diagnoses": [
|
10
|
+
{
|
11
|
+
"code": "789.00",
|
12
|
+
"date": "2014-10-01"
|
13
|
+
}
|
14
|
+
],
|
15
|
+
"place_of_service": "office",
|
16
|
+
"provider": {
|
17
|
+
"organization_name": "KELLY ULTRASOUND CENTER, LLC",
|
18
|
+
"npi": "1760779011",
|
19
|
+
"phone": "8642341234"
|
20
|
+
},
|
21
|
+
"services": [
|
22
|
+
{
|
23
|
+
"cpt_code": "76700",
|
24
|
+
"measurement": "unit",
|
25
|
+
"quantity": 1
|
26
|
+
}
|
27
|
+
],
|
28
|
+
"type": "diagnostic_medical"
|
29
|
+
},
|
30
|
+
"patient": {
|
31
|
+
"birth_date": "1970-01-01",
|
32
|
+
"first_name": "JANE",
|
33
|
+
"last_name": "DOE",
|
34
|
+
"id": "1234567890"
|
35
|
+
},
|
36
|
+
"provider": {
|
37
|
+
"first_name": "JEROME",
|
38
|
+
"npi": "1467560003",
|
39
|
+
"last_name": "AYA-AY"
|
40
|
+
},
|
41
|
+
"trading_partner_id": "MOCKPAYER"
|
42
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
{
|
2
|
+
"event": {
|
3
|
+
"category": "specialty_care_review",
|
4
|
+
"certification_type": "initial",
|
5
|
+
"delivery": {
|
6
|
+
"quantity": 1,
|
7
|
+
"quantity_qualifier": "visits"
|
8
|
+
},
|
9
|
+
"diagnoses": [
|
10
|
+
{
|
11
|
+
"code": "384.20",
|
12
|
+
"date": "2014-09-30"
|
13
|
+
}
|
14
|
+
],
|
15
|
+
"place_of_service": "office",
|
16
|
+
"provider": {
|
17
|
+
"first_name": "JOHN",
|
18
|
+
"npi": "1154387751",
|
19
|
+
"last_name": "FOSTER",
|
20
|
+
"phone": "8645822900"
|
21
|
+
},
|
22
|
+
"type": "consultation"
|
23
|
+
},
|
24
|
+
"patient": {
|
25
|
+
"birth_date": "1970-01-01",
|
26
|
+
"first_name": "JANE",
|
27
|
+
"last_name": "DOE",
|
28
|
+
"id": "1234567890"
|
29
|
+
},
|
30
|
+
"provider": {
|
31
|
+
"first_name": "CHRISTINA",
|
32
|
+
"last_name": "BERTOLAMI",
|
33
|
+
"npi": "1619131232"
|
34
|
+
},
|
35
|
+
"trading_partner_id": "MOCKPAYER"
|
36
|
+
}
|
data/spec/pokitdok_spec.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
require 'spec_helper'
|
4
4
|
|
5
|
-
CLIENT_ID = '
|
6
|
-
CLIENT_SECRET = '
|
5
|
+
CLIENT_ID = 'WbkhoNbwuJRWdz0w9Ehl'
|
6
|
+
CLIENT_SECRET = 'OPA9HSOUMJLYyZrH4VRPZLoL51gGtm7U4OxuYiz6'
|
7
7
|
POKITDOK_TEST_URL = 'http://localhost:5002'
|
8
8
|
|
9
9
|
def check_meta_and_data(result)
|
@@ -55,6 +55,19 @@ describe PokitDok do
|
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
58
|
+
describe 'Authorizations endpoint' do
|
59
|
+
it 'should expose the authorizations endpoint' do
|
60
|
+
query = JSON.parse(IO.read('spec/fixtures/authorizations.json'))
|
61
|
+
|
62
|
+
VCR.use_cassette 'authorizations' do
|
63
|
+
@authorizations = @pokitdok.authorizations query
|
64
|
+
end
|
65
|
+
|
66
|
+
check_meta_and_data @authorizations
|
67
|
+
refute_empty @authorizations['data']
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
58
71
|
describe 'Cash Prices endpoint' do
|
59
72
|
it 'should expose the cash prices endpoint' do
|
60
73
|
query = { cpt_code: '90658', zip_code: '94403' }
|
@@ -173,7 +186,7 @@ describe PokitDok do
|
|
173
186
|
|
174
187
|
check_meta_and_data @payers
|
175
188
|
refute_nil @payers['data']
|
176
|
-
@payers['data'].size.must_equal
|
189
|
+
@payers['data'].size.must_equal 295
|
177
190
|
end
|
178
191
|
end
|
179
192
|
|
@@ -187,7 +200,21 @@ describe PokitDok do
|
|
187
200
|
|
188
201
|
check_meta_and_data @providers
|
189
202
|
refute_nil @providers['data']
|
190
|
-
@providers['data'].size.must_equal
|
203
|
+
@providers['data'].size.must_equal 4
|
204
|
+
end
|
205
|
+
end
|
206
|
+
|
207
|
+
describe 'Referrals endpoint' do
|
208
|
+
it 'should expose the referrals endpoint' do
|
209
|
+
query = JSON.parse(IO.read('spec/fixtures/referrals.json'))
|
210
|
+
|
211
|
+
VCR.use_cassette 'referrals' do
|
212
|
+
@referrals = @pokitdok.referrals(query)
|
213
|
+
end
|
214
|
+
|
215
|
+
check_meta_and_data @referrals
|
216
|
+
refute_nil @referrals['data']
|
217
|
+
@referrals['data']['valid_request'].must_equal true
|
191
218
|
end
|
192
219
|
end
|
193
220
|
|
@@ -8,13 +8,13 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- pokitdok-ruby 0.4.1 ruby 2.
|
11
|
+
- pokitdok-ruby 0.4.1 ruby 2.1.3p242 (2014-09-19 revision 47630) [x86_64-darwin14.0]
|
12
12
|
Authorization:
|
13
|
-
- Bearer
|
13
|
+
- Bearer zwHIWGYIyYqGAZgczUzBpsGrhaRZFmd6mQqLaTFR
|
14
14
|
Accept-Encoding:
|
15
15
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
16
|
Accept:
|
17
|
-
-
|
17
|
+
- "*/*"
|
18
18
|
response:
|
19
19
|
status:
|
20
20
|
code: 200
|
@@ -23,7 +23,7 @@ http_interactions:
|
|
23
23
|
Content-Type:
|
24
24
|
- text/html; charset=utf-8
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '18351'
|
27
27
|
Mimetype:
|
28
28
|
- application/json
|
29
29
|
Charset:
|
@@ -31,493 +31,236 @@ http_interactions:
|
|
31
31
|
Server:
|
32
32
|
- Werkzeug/0.9.4 Python/2.7.3
|
33
33
|
Date:
|
34
|
-
- Wed,
|
34
|
+
- Wed, 22 Oct 2014 19:18:49 GMT
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
|
-
string: '{"meta": {"rate_limit_amount":
|
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
|
-
"name": "
|
75
|
-
"
|
76
|
-
|
77
|
-
"title": "
|
78
|
-
"name": "
|
79
|
-
|
80
|
-
"
|
81
|
-
"
|
82
|
-
"2014-
|
83
|
-
|
84
|
-
"
|
85
|
-
"name": "
|
86
|
-
"
|
87
|
-
"
|
88
|
-
|
89
|
-
|
90
|
-
"
|
91
|
-
"
|
92
|
-
"
|
93
|
-
"
|
94
|
-
|
95
|
-
"
|
96
|
-
"
|
97
|
-
"
|
98
|
-
"
|
99
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
100
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
101
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
102
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
103
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
104
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
105
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
106
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
107
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
108
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
109
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
110
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
111
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
112
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
113
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
114
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
115
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3c7f556c02c1d90ebf7aa",
|
116
|
-
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
117
|
-
"process", "complete"], "history": [{"record_dt": "2014-08-07T18:39:49.858000",
|
118
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-08T14:34:11.387000",
|
119
|
-
"name": "scheduled", "title": "Scheduled for next available transmission to
|
120
|
-
Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.389000", "name": "generating",
|
121
|
-
"title": "Generating transactions"}, {"record_dt": "2014-09-08T14:34:11.390000",
|
122
|
-
"name": "stored", "title": "Batch transactions stored for later processing"},
|
123
|
-
{"record_dt": "2014-09-08T14:34:11.391000", "name": "transmitting", "title":
|
124
|
-
"Transmitting transactions to Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.392000",
|
125
|
-
"name": "waiting", "title": "Waiting on Trading Partner Response"}, {"record_dt":
|
126
|
-
"2014-09-08T14:34:11.394000", "name": "receiving", "title": "Receiving transactions
|
127
|
-
from Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.395000", "name":
|
128
|
-
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
129
|
-
"name": "claims", "parameters": {"claim": {"plan_participation": "assigned",
|
130
|
-
"provider_signature": true, "total_charge_amount": "60", "claim_frequency":
|
131
|
-
"original", "place_of_service": "office", "direct_payment": "y", "patient_signature_on_file":
|
132
|
-
true, "information_release": "informed_consent", "service_lines": [{"diagnosis_codes":
|
133
|
-
["487.1"], "unit_count": "1", "unit_type": "units", "charge_amount": "60",
|
134
|
-
"service_date": "2014-06-01", "procedure_code": "99213"}]}, "trading_partner_id":
|
135
|
-
"MOCKPAYER", "payer": {"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"},
|
136
|
-
"subscriber": {"first_name": "Jane", "last_name": "Doe", "gender": "female",
|
137
|
-
"member_id": "W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
138
|
-
["123 N MAIN ST"], "state": "SC", "zipcode": "29301", "city": "SPARTANBURG"},
|
139
|
-
"birth_date": "1970-01-01"}, "correlation_id": "55f8671a-2817-4cdb-b77a-53c994c05cb6",
|
140
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "receiver": {"organization_name": "MOCKRECEIVER",
|
141
|
-
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
142
|
-
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
143
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
144
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
145
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
146
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
147
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
148
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
149
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
150
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
151
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
152
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
153
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
154
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
155
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
156
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
157
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
158
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
159
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3c89756c02c1df1ebf7aa",
|
160
|
-
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
161
|
-
"process", "complete"], "history": [{"record_dt": "2014-08-07T18:42:31.997000",
|
162
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-08T14:34:11.396000",
|
163
|
-
"name": "scheduled", "title": "Scheduled for next available transmission to
|
164
|
-
Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.397000", "name": "generating",
|
165
|
-
"title": "Generating transactions"}, {"record_dt": "2014-09-08T14:34:11.398000",
|
166
|
-
"name": "stored", "title": "Batch transactions stored for later processing"},
|
167
|
-
{"record_dt": "2014-09-08T14:34:11.399000", "name": "transmitting", "title":
|
168
|
-
"Transmitting transactions to Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.400000",
|
169
|
-
"name": "waiting", "title": "Waiting on Trading Partner Response"}, {"record_dt":
|
170
|
-
"2014-09-08T14:34:11.402000", "name": "receiving", "title": "Receiving transactions
|
171
|
-
from Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.411000", "name":
|
172
|
-
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
173
|
-
"name": "claims", "parameters": {"claim": {"plan_participation": "assigned",
|
174
|
-
"provider_signature": true, "total_charge_amount": "60", "claim_frequency":
|
175
|
-
"original", "place_of_service": "office", "direct_payment": "y", "patient_signature_on_file":
|
176
|
-
true, "information_release": "informed_consent", "service_lines": [{"diagnosis_codes":
|
177
|
-
["487.1"], "unit_count": "1", "unit_type": "units", "charge_amount": "60",
|
178
|
-
"service_date": "2014-06-01", "procedure_code": "99213"}]}, "trading_partner_id":
|
179
|
-
"MOCKPAYER", "payer": {"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"},
|
180
|
-
"subscriber": {"first_name": "Jane", "last_name": "Doe", "gender": "female",
|
181
|
-
"member_id": "W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
182
|
-
["123 N MAIN ST"], "state": "SC", "zipcode": "29301", "city": "SPARTANBURG"},
|
183
|
-
"birth_date": "1970-01-01"}, "correlation_id": "476f9d30-8147-45d1-8c8c-ec0391a1721c",
|
184
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "receiver": {"organization_name": "MOCKRECEIVER",
|
185
|
-
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
186
|
-
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
187
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
188
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
189
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
190
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
191
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
192
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
193
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
194
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
195
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
196
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
197
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
198
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
199
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
200
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
201
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
202
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
203
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3d09656c02c2180ebf7aa",
|
204
|
-
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
205
|
-
"process", "complete"], "history": [{"record_dt": "2014-08-07T19:16:38.332000",
|
206
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-08T14:34:11.422000",
|
207
|
-
"name": "scheduled", "title": "Scheduled for next available transmission to
|
208
|
-
Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.430000", "name": "generating",
|
209
|
-
"title": "Generating transactions"}, {"record_dt": "2014-09-08T14:34:11.432000",
|
210
|
-
"name": "stored", "title": "Batch transactions stored for later processing"},
|
211
|
-
{"record_dt": "2014-09-08T14:34:11.434000", "name": "transmitting", "title":
|
212
|
-
"Transmitting transactions to Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.436000",
|
213
|
-
"name": "waiting", "title": "Waiting on Trading Partner Response"}, {"record_dt":
|
214
|
-
"2014-09-08T14:34:11.438000", "name": "receiving", "title": "Receiving transactions
|
215
|
-
from Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.439000", "name":
|
216
|
-
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
217
|
-
"name": "claims", "parameters": {"claim": {"plan_participation": "assigned",
|
218
|
-
"provider_signature": true, "total_charge_amount": "60", "claim_frequency":
|
219
|
-
"original", "place_of_service": "office", "direct_payment": "y", "patient_signature_on_file":
|
220
|
-
true, "information_release": "informed_consent", "service_lines": [{"diagnosis_codes":
|
221
|
-
["487.1"], "unit_count": "1", "unit_type": "units", "charge_amount": "60",
|
222
|
-
"service_date": "2014-06-01", "procedure_code": "99213"}]}, "trading_partner_id":
|
223
|
-
"MOCKPAYER", "payer": {"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"},
|
224
|
-
"subscriber": {"first_name": "Jane", "last_name": "Doe", "gender": "female",
|
225
|
-
"member_id": "W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
226
|
-
["123 N MAIN ST"], "state": "SC", "zipcode": "29301", "city": "SPARTANBURG"},
|
227
|
-
"birth_date": "1970-01-01"}, "correlation_id": "0ffe7c32-d3c7-4412-905a-039493a0456f",
|
228
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "receiver": {"organization_name": "MOCKRECEIVER",
|
229
|
-
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
230
|
-
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
231
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
232
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
233
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
234
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
235
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
236
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
237
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
238
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
239
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
240
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
241
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
242
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
243
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
244
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
245
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
246
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
247
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3da2256c02c25ddebf7aa",
|
248
|
-
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
249
|
-
"process", "complete"], "history": [{"record_dt": "2014-08-07T19:57:22.434000",
|
250
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-08T14:34:11.442000",
|
251
|
-
"name": "scheduled", "title": "Scheduled for next available transmission to
|
252
|
-
Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.442000", "name": "generating",
|
253
|
-
"title": "Generating transactions"}, {"record_dt": "2014-09-08T14:34:11.443000",
|
254
|
-
"name": "stored", "title": "Batch transactions stored for later processing"},
|
255
|
-
{"record_dt": "2014-09-08T14:34:11.445000", "name": "transmitting", "title":
|
256
|
-
"Transmitting transactions to Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.446000",
|
257
|
-
"name": "waiting", "title": "Waiting on Trading Partner Response"}, {"record_dt":
|
258
|
-
"2014-09-08T14:34:11.448000", "name": "receiving", "title": "Receiving transactions
|
259
|
-
from Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.450000", "name":
|
260
|
-
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
261
|
-
"name": "claims", "parameters": {"claim": {"plan_participation": "assigned",
|
262
|
-
"provider_signature": true, "total_charge_amount": "60", "claim_frequency":
|
263
|
-
"original", "place_of_service": "office", "direct_payment": "y", "patient_signature_on_file":
|
264
|
-
true, "information_release": "informed_consent", "service_lines": [{"diagnosis_codes":
|
265
|
-
["487.1"], "unit_count": "1", "unit_type": "units", "charge_amount": "60",
|
266
|
-
"service_date": "2014-06-01", "procedure_code": "99213"}]}, "trading_partner_id":
|
267
|
-
"MOCKPAYER", "payer": {"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"},
|
268
|
-
"subscriber": {"first_name": "Jane", "last_name": "Doe", "gender": "female",
|
269
|
-
"member_id": "W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
270
|
-
["123 N MAIN ST"], "state": "SC", "zipcode": "29301", "city": "SPARTANBURG"},
|
271
|
-
"birth_date": "1970-01-01"}, "correlation_id": "09c1f6d8-56b9-48be-bfe4-2aaf8fde62d8",
|
272
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "receiver": {"organization_name": "MOCKRECEIVER",
|
273
|
-
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
274
|
-
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
275
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
276
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
277
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
278
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
279
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
280
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
281
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
282
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
283
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
284
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
285
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
286
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
287
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
288
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
289
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
290
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
291
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3df3f56c02c282eebf7aa",
|
292
|
-
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
293
|
-
"process", "complete"], "history": [{"record_dt": "2014-08-07T20:19:11.408000",
|
294
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-08T14:34:11.452000",
|
295
|
-
"name": "scheduled", "title": "Scheduled for next available transmission to
|
296
|
-
Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.455000", "name": "generating",
|
297
|
-
"title": "Generating transactions"}, {"record_dt": "2014-09-08T14:34:11.458000",
|
37
|
+
string: '{"meta": {"rate_limit_amount": 9, "rate_limit_reset": 1414009128, "application_mode":
|
38
|
+
"test", "processing_time": 25, "rate_limit_cap": 8434, "result_count": 79,
|
39
|
+
"activity_id": "5448031956c02c4489b7da95", "next": "http://localhost:5002/api/v4/activities/?offset=20"},
|
40
|
+
"data": [{"units_of_work": 1, "name": "payers", "parameters": {"state": "CA"},
|
41
|
+
"state": {"name": "completed", "title": "Completed"}, "trading_partner_id":
|
42
|
+
"PokitDok", "id": "5446e2d356c02c3df3b7da95", "transition_path": ["process",
|
43
|
+
"complete"], "history": [{"record_dt": "2014-10-21T22:48:51.738000", "name":
|
44
|
+
"init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:51.766000",
|
45
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
46
|
+
1, "name": "providers", "parameters": {"npi": "1467560003"}, "state": {"name":
|
47
|
+
"completed", "title": "Completed"}, "trading_partner_id": "PokitDok", "id":
|
48
|
+
"5446e2d356c02c3de9b7da95", "transition_path": ["process", "complete"], "history":
|
49
|
+
[{"record_dt": "2014-10-21T22:48:51.193000", "name": "init", "title": "Initializing"},
|
50
|
+
{"record_dt": "2014-10-21T22:48:51.196000", "name": "processing", "title":
|
51
|
+
"Processing transactions"}]}, {"units_of_work": 1, "name": "tradingpartners",
|
52
|
+
"parameters": {"id": "MOCKPAYER"}, "state": {"name": "completed", "title":
|
53
|
+
"Completed"}, "trading_partner_id": "PokitDok", "id": "5446e2d256c02c3dddb7da95",
|
54
|
+
"transition_path": ["process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:50.539000",
|
55
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:50.542000",
|
56
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
57
|
+
1, "name": "cash_prices", "parameters": {"cpt_code": "90658", "zip_code":
|
58
|
+
"94403"}, "state": {"name": "completed", "title": "Completed"}, "trading_partner_id":
|
59
|
+
"PokitDok", "id": "5446e2d356c02c3de7b7da95", "transition_path": ["process",
|
60
|
+
"complete"], "history": [{"record_dt": "2014-10-21T22:48:51.161000", "name":
|
61
|
+
"init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:51.162000",
|
62
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
63
|
+
1, "name": "payers", "parameters": {"state": "CA"}, "state": {"name": "completed",
|
64
|
+
"title": "Completed"}, "trading_partner_id": "PokitDok", "id": "5446e60756c02c3ec0b7da95",
|
65
|
+
"transition_path": ["process", "complete"], "history": [{"record_dt": "2014-10-21T23:02:31.488000",
|
66
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T23:02:31.514000",
|
67
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
68
|
+
1, "name": "activities", "state": {"name": "completed", "title": "Completed"},
|
69
|
+
"trading_partner_id": "PokitDok", "id": "5446e2d356c02c3de5b7da95", "transition_path":
|
70
|
+
["process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.121000",
|
71
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:51.130000",
|
72
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
73
|
+
1, "name": "insurance_prices", "parameters": {"cpt_code": "87799", "zip_code":
|
74
|
+
"32218"}, "state": {"name": "completed", "title": "Completed"}, "trading_partner_id":
|
75
|
+
"PokitDok", "id": "5446e2d256c02c3dd9b7da95", "transition_path": ["process",
|
76
|
+
"complete"], "history": [{"record_dt": "2014-10-21T22:48:50.473000", "name":
|
77
|
+
"init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:50.474000",
|
78
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
79
|
+
1, "name": "plans", "parameters": {"state": "TX", "plan_type": "PPO"}, "state":
|
80
|
+
{"name": "completed", "title": "Completed"}, "trading_partner_id": "PokitDok",
|
81
|
+
"id": "5446e2d256c02c3ddbb7da95", "transition_path": ["process", "complete"],
|
82
|
+
"history": [{"record_dt": "2014-10-21T22:48:50.508000", "name": "init", "title":
|
83
|
+
"Initializing"}, {"record_dt": "2014-10-21T22:48:50.509000", "name": "processing",
|
84
|
+
"title": "Processing transactions"}]}, {"units_of_work": 1, "name": "tradingpartners",
|
85
|
+
"state": {"name": "completed", "title": "Completed"}, "trading_partner_id":
|
86
|
+
"PokitDok", "id": "5446e2d356c02c3de3b7da95", "transition_path": ["process",
|
87
|
+
"complete"], "history": [{"record_dt": "2014-10-21T22:48:51.032000", "name":
|
88
|
+
"init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:51.085000",
|
89
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
90
|
+
1, "name": "plans", "state": {"name": "completed", "title": "Completed"},
|
91
|
+
"trading_partner_id": "PokitDok", "id": "5446e60856c02c3ec5b7da95", "transition_path":
|
92
|
+
["process", "complete"], "history": [{"record_dt": "2014-10-21T23:02:32.028000",
|
93
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T23:02:32.029000",
|
94
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
95
|
+
20, "name": "batch file", "state": {"name": "completed", "title": "Completed"},
|
96
|
+
"trading_partner_id": "MOCKPAYER", "id": "5446e2d256c02c3ddfb7da95", "transition_path":
|
97
|
+
["store", "queue", "process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:50.959000",
|
98
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:50.961000",
|
298
99
|
"name": "stored", "title": "Batch transactions stored for later processing"},
|
299
|
-
{"record_dt": "2014-
|
300
|
-
|
301
|
-
"name": "waiting", "title": "Waiting on Trading Partner Response"}, {"record_dt":
|
302
|
-
"2014-09-08T14:34:11.466000", "name": "receiving", "title": "Receiving transactions
|
303
|
-
from Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.467000", "name":
|
100
|
+
{"record_dt": "2014-10-21T22:48:50.995000", "name": "queued", "title": "In
|
101
|
+
queue waiting to start"}, {"record_dt": "2014-10-21T22:48:51.542000", "name":
|
304
102
|
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
305
|
-
"name": "
|
306
|
-
"
|
307
|
-
"
|
308
|
-
|
309
|
-
|
310
|
-
"
|
311
|
-
"
|
312
|
-
"
|
313
|
-
"
|
314
|
-
|
315
|
-
"
|
316
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "receiver": {"organization_name": "MOCKRECEIVER",
|
317
|
-
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
318
|
-
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
319
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
320
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
321
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
322
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
323
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
324
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
325
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
326
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
327
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
328
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
329
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
330
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
331
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
332
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
333
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
334
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
335
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3e09856c02c28d9ebf7aa",
|
103
|
+
"name": "eligibility", "parameters": {"service_types": ["health_benefit_plan_coverage"],
|
104
|
+
"client_id": "WbkhoNbwuJRWdz0w9Ehl", "payer": {"id": "MOCKPAYER", "name":
|
105
|
+
"MOCKPAYER"}, "member": {"birth_date": "1996-06-13", "first_name": "Hassan",
|
106
|
+
"last_name": "Walker", "plan_start_date": "2014-03-05", "id": "773415451"},
|
107
|
+
"parent_id": "5446e2d256c02c3ddfb7da95", "correlation_id": "ad6e0a02-0fb2-4332-87d3-9f77efe11db6",
|
108
|
+
"trading_partner_id": "MOCKPAYER", "provider": {"organization_name": "Wuckert
|
109
|
+
Inc", "npi": "581603684"}, "async": true, "transaction_code": "request"},
|
110
|
+
"remaining_transitions": ["generate", "store", "transmit", "wait", "receive",
|
111
|
+
"process", "complete"], "parent_id": "5446e2d256c02c3ddfb7da95", "state":
|
112
|
+
{"name": "scheduled", "title": "Scheduled for next available transmission
|
113
|
+
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "5446e2d356c02c3d8acd4617",
|
336
114
|
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
337
|
-
"process", "complete"], "history": [{"record_dt": "2014-
|
338
|
-
"name": "init", "title": "Initializing"}, {"
|
339
|
-
"
|
340
|
-
|
341
|
-
"
|
342
|
-
"name": "
|
343
|
-
|
344
|
-
"
|
345
|
-
"
|
346
|
-
"
|
347
|
-
|
348
|
-
"
|
349
|
-
"
|
350
|
-
"
|
351
|
-
"
|
352
|
-
|
353
|
-
|
354
|
-
"
|
355
|
-
"MOCKPAYER", "payer": {"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"},
|
356
|
-
"subscriber": {"first_name": "Jane", "last_name": "Doe", "gender": "female",
|
357
|
-
"member_id": "W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
358
|
-
["123 N MAIN ST"], "state": "SC", "zipcode": "29301", "city": "SPARTANBURG"},
|
359
|
-
"birth_date": "1970-01-01"}, "correlation_id": "a407a6d8-53b2-4da3-91e4-15248ff58122",
|
360
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "receiver": {"organization_name": "MOCKRECEIVER",
|
361
|
-
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
362
|
-
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
363
|
-
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
364
|
-
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
365
|
-
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
366
|
-
"transaction_code": "chargeable"}, "state": {"name": "completed", "title":
|
367
|
-
"Completed"}, "result": {"submitter": {"accepted_amount": "100", "accepted_quantity":
|
368
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK SUBMITTER", "rejected_quantity":
|
369
|
-
"0", "tracking_id": "0123", "id": "123456789"}, "patients": [{"tracking_id":
|
370
|
-
"26462967", "first_name": "Jane", "last_name": "Doe", "id": "W000000000",
|
371
|
-
"claim_level_info": [{"claim_level_service_date": "2014-09-08", "claim_id_number":
|
372
|
-
"17312345600006351", "claim_level_service_end_date": "2014-09-08", "service_level_info":
|
373
|
-
[{"service_line_info": {}, "service_level_statuses": [], "service_line_end_date":
|
374
|
-
"2014-09-08", "service_line_date": "2014-09-08"}]}]}], "trading_partner_id":
|
375
|
-
"MOCKPAYER", "payer": {"name": "MOCKPAYER", "date_processed": "2014-09-08",
|
376
|
-
"id": "123456789", "tracking_id": "1445056.1", "date_received": "2014-09-08"},
|
377
|
-
"providers": [{"npi": "123456789", "accepted_amount": "100", "accepted_quantity":
|
378
|
-
"1", "rejected_amount": "0", "organization_name": "MOCK PROVIDER", "rejected_quantity":
|
379
|
-
"0", "tracking_id": "1"}]}, "trading_partner_id": "MOCKPAYER", "id": "53e3f14a56c02c323df86661",
|
115
|
+
"process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.332000",
|
116
|
+
"name": "init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "providers",
|
117
|
+
"parameters": {"npi": "1467560003"}, "state": {"name": "completed", "title":
|
118
|
+
"Completed"}, "trading_partner_id": "PokitDok", "id": "5446e60856c02c3ecdb7da95",
|
119
|
+
"transition_path": ["process", "complete"], "history": [{"record_dt": "2014-10-21T23:02:32.293000",
|
120
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T23:02:32.294000",
|
121
|
+
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
122
|
+
1, "name": "eligibility", "parameters": {"service_types": ["health_benefit_plan_coverage"],
|
123
|
+
"client_id": "WbkhoNbwuJRWdz0w9Ehl", "payer": {"id": "MOCKPAYER", "name":
|
124
|
+
"MOCKPAYER"}, "member": {"birth_date": "1996-05-07", "first_name": "Jerod",
|
125
|
+
"last_name": "Tromp", "plan_start_date": "2014-03-05", "id": "545943979"},
|
126
|
+
"parent_id": "5446e2d256c02c3ddfb7da95", "correlation_id": "ad6e0a02-0fb2-4332-87d3-9f77efe11db6",
|
127
|
+
"trading_partner_id": "MOCKPAYER", "provider": {"organization_name": "Wuckert
|
128
|
+
Inc", "npi": "581603684"}, "async": true, "transaction_code": "request"},
|
129
|
+
"remaining_transitions": ["generate", "store", "transmit", "wait", "receive",
|
130
|
+
"process", "complete"], "parent_id": "5446e2d256c02c3ddfb7da95", "state":
|
131
|
+
{"name": "scheduled", "title": "Scheduled for next available transmission
|
132
|
+
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "5446e2d356c02c3d8acd4616",
|
380
133
|
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
381
|
-
"process", "complete"], "history": [{"record_dt": "2014-
|
382
|
-
"name": "init", "title": "Initializing"}, {"
|
383
|
-
"
|
384
|
-
|
385
|
-
"
|
386
|
-
"
|
387
|
-
|
388
|
-
"
|
389
|
-
"
|
390
|
-
"
|
391
|
-
|
392
|
-
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
393
|
-
"name": "claims", "parameters": {"claim": {"plan_participation": "assigned",
|
394
|
-
"provider_signature": true, "total_charge_amount": "60", "claim_frequency":
|
395
|
-
"original", "place_of_service": "office", "direct_payment": "y", "patient_signature_on_file":
|
396
|
-
true, "information_release": "informed_consent", "service_lines": [{"diagnosis_codes":
|
397
|
-
["487.1"], "unit_count": "1", "unit_type": "units", "charge_amount": "60",
|
398
|
-
"service_date": "2014-06-01", "procedure_code": "99213"}]}, "trading_partner_id":
|
399
|
-
"MOCKPAYER", "payer": {"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"},
|
400
|
-
"subscriber": {"first_name": "Jane", "last_name": "Doe", "gender": "female",
|
401
|
-
"member_id": "W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
134
|
+
"process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.324000",
|
135
|
+
"name": "init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "claims",
|
136
|
+
"parameters": {"claim": {"plan_participation": "assigned", "provider_signature":
|
137
|
+
true, "total_charge_amount": "60.0", "claim_frequency": "original", "place_of_service":
|
138
|
+
"office", "direct_payment": "y", "patient_signature_on_file": true, "information_release":
|
139
|
+
"informed_consent", "service_lines": [{"diagnosis_codes": ["487.1"], "unit_count":
|
140
|
+
"1.0", "unit_type": "units", "charge_amount": "60.0", "service_date": "2014-06-01",
|
141
|
+
"procedure_code": "99213"}]}, "trading_partner_id": "MOCKPAYER", "payer":
|
142
|
+
{"organization_name": "MOCKPAYER", "plan_id": "MOCKPAYER"}, "subscriber":
|
143
|
+
{"first_name": "Jane", "last_name": "Doe", "gender": "female", "member_id":
|
144
|
+
"W000000000", "payer_responsibility": "primary", "address": {"address_lines":
|
402
145
|
["123 N MAIN ST"], "state": "SC", "zipcode": "29301", "city": "SPARTANBURG"},
|
403
|
-
"birth_date": "1970-01-01"}, "correlation_id": "
|
404
|
-
"client_id": "
|
146
|
+
"birth_date": "1970-01-01"}, "correlation_id": "3eab49a5-4e77-4ec5-9ffb-bd8a29adade0",
|
147
|
+
"client_id": "WbkhoNbwuJRWdz0w9Ehl", "receiver": {"organization_name": "MOCKRECEIVER",
|
405
148
|
"id": "MOCKRECEIVER"}, "submitter": {"organization_name": "POKITDOK TESTING",
|
406
149
|
"id": "POKITDOKTEST", "email": "support@pokitdok.com"}, "async": false, "billing_provider":
|
407
150
|
{"first_name": "Jerome", "last_name": "Aya-Ay", "npi": "1467560003", "taxonomy_code":
|
408
151
|
"207Q00000X", "address": {"address_lines": ["8311 WARREN H ABERNATHY HWY"],
|
409
152
|
"state": "SC", "zipcode": "29301", "city": "SPARTANBURG"}, "tax_id": "123456789"},
|
410
|
-
"transaction_code": "chargeable"}, "
|
411
|
-
"
|
412
|
-
"
|
413
|
-
"
|
414
|
-
"
|
415
|
-
"
|
416
|
-
"
|
417
|
-
|
418
|
-
"
|
419
|
-
"
|
420
|
-
"
|
421
|
-
"
|
422
|
-
"
|
423
|
-
"
|
153
|
+
"transaction_code": "chargeable"}, "remaining_transitions": ["generate", "store",
|
154
|
+
"transmit", "wait", "receive", "process", "complete"], "state": {"name": "scheduled",
|
155
|
+
"title": "Scheduled for next available transmission to Trading Partner"},
|
156
|
+
"trading_partner_id": "MOCKPAYER", "id": "5446e2d256c02c3dd5b7da95", "transition_path":
|
157
|
+
["schedule", "generate", "store", "transmit", "wait", "receive", "process",
|
158
|
+
"complete"], "history": [{"record_dt": "2014-10-21T22:48:50.267000", "name":
|
159
|
+
"init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "referrals",
|
160
|
+
"parameters": {"patient": {"birth_date": "1970-01-01", "first_name": "JANE",
|
161
|
+
"last_name": "DOE", "id": "1234567890"}, "trading_partner_id": "MOCKPAYER",
|
162
|
+
"payer": {"organization_name": "Mock Payer for Testing", "id": "MOCKPAYER"},
|
163
|
+
"originating_company_id": "123456789", "correlation_id": "d5b56815-f4b6-43c0-8bbc-68cacf249c4c",
|
164
|
+
"client_id": "WbkhoNbwuJRWdz0w9Ehl", "provider": {"first_name": "CHRISTINA",
|
165
|
+
"last_name": "BERTOLAMI", "npi": "1619131232"}, "async": false, "event": {"category":
|
166
|
+
"specialty_care_review", "diagnoses": [{"date": "2014-09-30", "code": "384.20"}],
|
167
|
+
"place_of_service": "office", "delivery": {"quantity_qualifier": "visits",
|
168
|
+
"quantity": 1}, "provider": {"phone": "8645822900", "first_name": "JOHN",
|
169
|
+
"last_name": "FOSTER", "npi": "1154387751"}, "certification_type": "initial",
|
170
|
+
"type": "consultation"}}, "state": {"name": "completed", "title": "Completed"},
|
171
|
+
"result": {"patient": {"first_name": "JANE", "last_name": "DOE", "id": "1234567890"},
|
172
|
+
"trading_partner_id": "MOCKPAYER", "payer": {"organization_name": "MOCK PAYER
|
173
|
+
INC", "id": "MOCKPAYER"}, "originating_company_id": "9012345678", "correlation_id":
|
174
|
+
"d5b56815-f4b6-43c0-8bbc-68cacf249c4c", "client_id": "WbkhoNbwuJRWdz0w9Ehl",
|
175
|
+
"provider": {"first_name": "CHRISTINA", "last_name": "BERTOLAMI", "tax_id":
|
176
|
+
"1619131232"}, "async": false, "event": {"category": "specialty_care_review",
|
177
|
+
"diagnoses": [{"date": "2005-04-30", "code": "410.90"}], "place_of_service":
|
178
|
+
"office", "review": {"certification_number": "AUTH0001", "second_surgical_opinion_required":
|
179
|
+
false, "certification_action": "certified_in_total"}, "delivery": {"quantity_qualifier":
|
180
|
+
"visits", "quantity": 1}, "provider": {"first_name": "JOHN", "last_name":
|
181
|
+
"FOSTER", "tax_id": "1154387751"}, "certification_type": "initial", "type":
|
182
|
+
"consultation"}, "valid_request": true}, "trading_partner_id": "MOCKPAYER",
|
183
|
+
"id": "5446e2d256c02c3dd7b7da95", "transition_path": ["generate", "transmit",
|
184
|
+
"wait", "receive", "process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:50.303000",
|
185
|
+
"name": "init", "title": "Initializing"}, {"record_dt": "2014-10-21T22:48:50.394000",
|
186
|
+
"name": "generating", "title": "Generating transactions"}, {"record_dt": "2014-10-21T22:48:50.396000",
|
187
|
+
"name": "transmitting", "title": "Transmitting transactions to Trading Partner"},
|
188
|
+
{"record_dt": "2014-10-21T22:48:50.397000", "name": "waiting", "title": "Waiting
|
189
|
+
on Trading Partner Response"}, {"record_dt": "2014-10-21T22:48:50.398000",
|
190
|
+
"name": "receiving", "title": "Receiving transactions from Trading Partner"},
|
191
|
+
{"record_dt": "2014-10-21T22:48:50.429000", "name": "processing", "title":
|
192
|
+
"Processing transactions"}]}, {"units_of_work": 1, "name": "enrollment", "parameters":
|
193
|
+
{"reference_number": "12456", "version": "4.0.0", "payer": {"tax_id": "654456654"},
|
194
|
+
"update_dt": "Wed Mar 26 22:18:47 2014", "deleted": false, "major_version":
|
195
|
+
"4", "subscriber": {"maintenance_type": "Addition", "first_name": "JOHN",
|
196
|
+
"last_name": "DOE", "benefits": [{"maintenance_type": "Addition", "late_enrollment":
|
197
|
+
false, "begin_date": "Sat Jun 1 00:00:00 1996", "benefit_type": "Health",
|
198
|
+
"coordination_of_benefits": [{"status": "Unknown", "group_or_policy_number":
|
199
|
+
"890111", "payer_responsibility": "Primary"}]}, {"maintenance_type": "Addition",
|
200
|
+
"late_enrollment": false, "begin_date": "Sat Jun 1 00:00:00 1996", "benefit_type":
|
201
|
+
"Dental"}, {"maintenance_type": "Addition", "late_enrollment": false, "begin_date":
|
202
|
+
"Sat Jun 1 00:00:00 1996", "benefit_type": "Vision"}], "relationship": "Self",
|
203
|
+
"contacts": [{"communication_type2": "Work Phone Number", "primary_communication_type":
|
204
|
+
"Home Phone Number", "communication_number2": "7172341240", "primary_communication_number":
|
205
|
+
"7172343334"}], "benefit_status": "Active", "gender": "Male", "employment_status":
|
206
|
+
"Full-time", "subscriber_number": "123456789", "group_or_policy_number": "123456001",
|
207
|
+
"maintenance_reason": "Active", "member_id": "123456789", "handicapped": false,
|
208
|
+
"eligibility_begin_date": "Thu May 23 00:00:00 1996", "ssn": "123456789",
|
209
|
+
"address": {"city": "CAMP HILL", "line2": "APT 3G", "county": "CUMBERLAND",
|
210
|
+
"state": "PA", "postal_code": "17011", "line": "100 MARKET ST"}, "birth_date":
|
211
|
+
"Fri Aug 16 00:00:00 1940", "middle_name": "P", "substance_abuse": false,
|
212
|
+
"tobacco_use": false}, "correlation_id": "11f6e7aa-509a-4181-94c8-ce5395f8f100",
|
213
|
+
"insert_dt": "Wed Mar 26 22:18:47 2014", "trading_partner_id": "MOCKPAYER",
|
214
|
+
"purpose": "Original", "client_id": "WbkhoNbwuJRWdz0w9Ehl", "action": "Change",
|
215
|
+
"dependents": [], "sponsor": {"tax_id": "999888777"}}, "remaining_transitions":
|
216
|
+
["generate", "store", "transmit", "wait", "receive", "process", "complete"],
|
217
|
+
"state": {"name": "scheduled", "title": "Scheduled for next available transmission
|
218
|
+
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "5446e2d356c02c3debb7da95",
|
424
219
|
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
425
|
-
"process", "complete"], "history": [{"record_dt": "2014-
|
426
|
-
"name": "init", "title": "Initializing"}, {"
|
427
|
-
"
|
428
|
-
|
429
|
-
"
|
430
|
-
"
|
431
|
-
|
432
|
-
"Transmitting transactions to Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.503000",
|
433
|
-
"name": "waiting", "title": "Waiting on Trading Partner Response"}, {"record_dt":
|
434
|
-
"2014-09-08T14:34:11.507000", "name": "receiving", "title": "Receiving transactions
|
435
|
-
from Trading Partner"}, {"record_dt": "2014-09-08T14:34:11.509000", "name":
|
436
|
-
"processing", "title": "Processing transactions"}]}, {"units_of_work": 1,
|
437
|
-
"name": "providers", "parameters": {"npi": "1467560003"}, "state": {"name":
|
438
|
-
"failed", "title": "Failed"}, "trading_partner_id": "PokitDok", "id": "5419ad8956c02c1e6b6b8195",
|
439
|
-
"transition_path": ["process", "complete"], "history": [{"record_dt": "2014-09-17T15:49:29.329000",
|
440
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-17T15:49:30.151000",
|
441
|
-
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
442
|
-
1, "name": "payers", "parameters": {"state": "CA"}, "state": {"name": "completed",
|
443
|
-
"title": "Completed"}, "trading_partner_id": "PokitDok", "id": "5419ad8a56c02c1e806b8195",
|
444
|
-
"transition_path": ["process", "complete"], "history": [{"record_dt": "2014-09-17T15:49:30.810000",
|
445
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-17T15:49:30.835000",
|
446
|
-
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
447
|
-
1, "name": "plans", "state": {"name": "completed", "title": "Completed"},
|
448
|
-
"trading_partner_id": "PokitDok", "id": "5419ae1b56c02c1ed36b8195", "transition_path":
|
449
|
-
["process", "complete"], "history": [{"record_dt": "2014-09-17T15:51:55.751000",
|
450
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-17T15:51:55.789000",
|
451
|
-
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
452
|
-
1, "name": "eligibility", "parameters": {"service_types": ["health_benefit_plan_coverage"],
|
453
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "payer": {"id": "MOCKPAYER", "name":
|
454
|
-
"MOCKPAYER"}, "member": {"birth_date": "1995-04-14", "first_name": "Jimmie",
|
455
|
-
"last_name": "Monahan", "plan_start_date": "2014-03-05", "id": "315531994"},
|
456
|
-
"parent_id": "5419b85c56c02c26626b8195", "correlation_id": "665ecabc-e17a-4dee-9a7b-4fcceed0a4d5",
|
220
|
+
"process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.235000",
|
221
|
+
"name": "init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "eligibility",
|
222
|
+
"parameters": {"service_types": ["health_benefit_plan_coverage"], "client_id":
|
223
|
+
"WbkhoNbwuJRWdz0w9Ehl", "payer": {"id": "MOCKPAYER", "name": "MOCKPAYER"},
|
224
|
+
"member": {"birth_date": "1992-01-26", "first_name": "Keyon", "last_name":
|
225
|
+
"Ortiz", "plan_start_date": "2014-03-05", "id": "178470414"}, "parent_id":
|
226
|
+
"5446e2d256c02c3ddfb7da95", "correlation_id": "ad6e0a02-0fb2-4332-87d3-9f77efe11db6",
|
457
227
|
"trading_partner_id": "MOCKPAYER", "provider": {"organization_name": "Wuckert
|
458
228
|
Inc", "npi": "581603684"}, "async": true, "transaction_code": "request"},
|
459
229
|
"remaining_transitions": ["generate", "store", "transmit", "wait", "receive",
|
460
|
-
"process", "complete"], "parent_id": "
|
230
|
+
"process", "complete"], "parent_id": "5446e2d256c02c3ddfb7da95", "state":
|
461
231
|
{"name": "scheduled", "title": "Scheduled for next available transmission
|
462
|
-
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "
|
232
|
+
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "5446e2d356c02c3d8acd4621",
|
463
233
|
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
464
|
-
"process", "complete"], "history": [{"record_dt": "2014-
|
234
|
+
"process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.437000",
|
465
235
|
"name": "init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "eligibility",
|
466
236
|
"parameters": {"service_types": ["health_benefit_plan_coverage"], "client_id":
|
467
|
-
"
|
468
|
-
"member": {"birth_date": "
|
469
|
-
"
|
470
|
-
"
|
237
|
+
"WbkhoNbwuJRWdz0w9Ehl", "payer": {"id": "MOCKPAYER", "name": "MOCKPAYER"},
|
238
|
+
"member": {"birth_date": "1995-04-14", "first_name": "Jimmie", "last_name":
|
239
|
+
"Monahan", "plan_start_date": "2014-03-05", "id": "315531994"}, "parent_id":
|
240
|
+
"5446e2d256c02c3ddfb7da95", "correlation_id": "ad6e0a02-0fb2-4332-87d3-9f77efe11db6",
|
471
241
|
"trading_partner_id": "MOCKPAYER", "provider": {"organization_name": "Wuckert
|
472
242
|
Inc", "npi": "581603684"}, "async": true, "transaction_code": "request"},
|
473
243
|
"remaining_transitions": ["generate", "store", "transmit", "wait", "receive",
|
474
|
-
"process", "complete"], "parent_id": "
|
244
|
+
"process", "complete"], "parent_id": "5446e2d256c02c3ddfb7da95", "state":
|
475
245
|
{"name": "scheduled", "title": "Scheduled for next available transmission
|
476
|
-
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "
|
246
|
+
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "5446e2d356c02c3d8acd461d",
|
477
247
|
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
478
|
-
"process", "complete"], "history": [{"record_dt": "2014-
|
479
|
-
"name": "init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "
|
480
|
-
"
|
481
|
-
"
|
482
|
-
"
|
483
|
-
"
|
484
|
-
"
|
485
|
-
1, "name": "eligibility", "parameters": {"service_types": ["health_benefit_plan_coverage"],
|
486
|
-
"client_id": "JcR2P8SmoIaon4vpN9Q9", "payer": {"id": "MOCKPAYER", "name":
|
487
|
-
"MOCKPAYER"}, "member": {"birth_date": "1996-05-07", "first_name": "Jerod",
|
488
|
-
"last_name": "Tromp", "plan_start_date": "2014-03-05", "id": "545943979"},
|
489
|
-
"parent_id": "5419afa656c02c1fc56b8195", "correlation_id": "bafb3965-77cb-47b8-9b73-8397adc39348",
|
248
|
+
"process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.389000",
|
249
|
+
"name": "init", "title": "Initializing"}]}, {"units_of_work": 1, "name": "eligibility",
|
250
|
+
"parameters": {"service_types": ["health_benefit_plan_coverage"], "client_id":
|
251
|
+
"WbkhoNbwuJRWdz0w9Ehl", "payer": {"id": "MOCKPAYER", "name": "MOCKPAYER"},
|
252
|
+
"member": {"birth_date": "1978-01-09", "first_name": "Markus", "last_name":
|
253
|
+
"Bednar", "plan_start_date": "2014-03-05", "id": "674957204"}, "parent_id":
|
254
|
+
"5446e2d256c02c3ddfb7da95", "correlation_id": "ad6e0a02-0fb2-4332-87d3-9f77efe11db6",
|
490
255
|
"trading_partner_id": "MOCKPAYER", "provider": {"organization_name": "Wuckert
|
491
256
|
Inc", "npi": "581603684"}, "async": true, "transaction_code": "request"},
|
492
257
|
"remaining_transitions": ["generate", "store", "transmit", "wait", "receive",
|
493
|
-
"process", "complete"], "parent_id": "
|
258
|
+
"process", "complete"], "parent_id": "5446e2d256c02c3ddfb7da95", "state":
|
494
259
|
{"name": "scheduled", "title": "Scheduled for next available transmission
|
495
|
-
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "
|
260
|
+
to Trading Partner"}, "trading_partner_id": "MOCKPAYER", "id": "5446e2d356c02c3d8acd461e",
|
496
261
|
"transition_path": ["schedule", "generate", "store", "transmit", "wait", "receive",
|
497
|
-
"process", "complete"], "history": [{"record_dt": "2014-
|
498
|
-
"name": "init", "title": "Initializing"}]}
|
499
|
-
"parameters": {"cpt_code": "12345", "zip_code": "75201"}, "state": {"name":
|
500
|
-
"completed", "title": "Completed"}, "trading_partner_id": "PokitDok", "id":
|
501
|
-
"5419ad8b56c02c1e886b8195", "transition_path": ["process", "complete"], "history":
|
502
|
-
[{"record_dt": "2014-09-17T15:49:31.581000", "name": "init", "title": "Initializing"},
|
503
|
-
{"record_dt": "2014-09-17T15:49:31.615000", "name": "processing", "title":
|
504
|
-
"Processing transactions"}]}, {"units_of_work": 1, "name": "tradingpartners",
|
505
|
-
"state": {"name": "completed", "title": "Completed"}, "trading_partner_id":
|
506
|
-
"PokitDok", "id": "5419ae1c56c02c1ee46b8195", "transition_path": ["process",
|
507
|
-
"complete"], "history": [{"record_dt": "2014-09-17T15:51:56.587000", "name":
|
508
|
-
"init", "title": "Initializing"}, {"record_dt": "2014-09-17T15:51:56.633000",
|
509
|
-
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
510
|
-
1, "name": "providers", "parameters": {"npi": "1467560003"}, "state": {"name":
|
511
|
-
"failed", "title": "Failed"}, "trading_partner_id": "PokitDok", "id": "5419ae1c56c02c1ee66b8195",
|
512
|
-
"transition_path": ["process", "complete"], "history": [{"record_dt": "2014-09-17T15:51:56.676000",
|
513
|
-
"name": "init", "title": "Initializing"}, {"record_dt": "2014-09-17T15:51:56.731000",
|
514
|
-
"name": "processing", "title": "Processing transactions"}]}, {"units_of_work":
|
515
|
-
1, "name": "tradingpartners", "parameters": {"id": "MOCKPAYER"}, "state":
|
516
|
-
{"name": "completed", "title": "Completed"}, "trading_partner_id": "PokitDok",
|
517
|
-
"id": "5419ad8a56c02c1e766b8195", "transition_path": ["process", "complete"],
|
518
|
-
"history": [{"record_dt": "2014-09-17T15:49:30.227000", "name": "init", "title":
|
519
|
-
"Initializing"}, {"record_dt": "2014-09-17T15:49:30.231000", "name": "processing",
|
520
|
-
"title": "Processing transactions"}]}]}'
|
262
|
+
"process", "complete"], "history": [{"record_dt": "2014-10-21T22:48:51.402000",
|
263
|
+
"name": "init", "title": "Initializing"}]}]}'
|
521
264
|
http_version:
|
522
|
-
recorded_at: Wed,
|
265
|
+
recorded_at: Wed, 22 Oct 2014 19:18:49 GMT
|
523
266
|
recorded_with: VCR 2.9.2
|