using Newtonsoft.Json.Linq;
public static void Main()
""href"": ""https://api-uat.dwolla.com/accounts/069b759d-6267-42d6-b30b-5d03ddd25673/funding-sources"",
""type"": ""application/vnd.dwolla.v1.hal+json"",
""resource-type"": ""funding-source""
""href"": ""https://api-uat.dwolla.com/funding-sources/0b2f6a31-b909-4c7d-a9f8-6253e5f791d0"",
""type"": ""application/vnd.dwolla.v1.hal+json"",
""resource-type"": ""funding-source""
""href"": ""https://api-uat.dwolla.com/accounts/069b759d-6267-42d6-b30b-5d03ddd25673"",
""type"": ""application/vnd.dwolla.v1.hal+json"",
""resource-type"": ""account""
""href"": ""https://api-uat.dwolla.com/funding-sources/0b2f6a31-b909-4c7d-a9f8-6253e5f791d0/balance"",
""type"": ""application/vnd.dwolla.v1.hal+json"",
""resource-type"": ""balance""
""id"": ""0b2f6a31-b909-4c7d-a9f8-6253e5f791d0"",
""status"": ""verified"",
""name"": ""Bank Of America"",
""created"": ""2017-03-22T12:54:51Z"",
""bankName"": ""SANDBOX TEST BANK""
""href"": ""https://api-uat.dwolla.com/funding-sources/2235c3f5-03d6-4b7c-8ffb-c389c94375eb"",
""type"": ""application/vnd.dwolla.v1.hal+json"",
""resource-type"": ""funding-source""
""href"": ""https://api-uat.dwolla.com/accounts/069b759d-6267-42d6-b30b-5d03ddd25673"",
""type"": ""application/vnd.dwolla.v1.hal+json"",
""resource-type"": ""account""
""id"": ""2235c3f5-03d6-4b7c-8ffb-c389c94375eb"",
""status"": ""verified"",
""name"": ""Superhero Savings Bank"",
""created"": ""2017-03-17T06:39:28Z"",
""bankName"": ""SANDBOX TEST BANK""
JObject jsonObject = JObject.Parse(myJson);
foreach (JToken fundingSource in jsonObject.SelectToken("_embedded.funding-sources"))
bool removed = (bool)fundingSource["removed"];
string href = (string)fundingSource.SelectToken("_links.self.href");