I have a variable "case" that calls OrderedDict:
OrderedDict([('totalSize', 1),
('done', True),
('records',
[OrderedDict([('attributes',
OrderedDict([('type', 'Case'),
('url',
'/services/data/v38.0/sobjects/Case/5003700000ReKcJAAV')])),
('Id', '5003700000ReKcJAAV')])])])
I want a variable 'Id' to return '5003700000ReKcJAAV'. Is there a way to do that?
I'm using Python 3.6.5