{"id":40055096,"url":"https://github.com/vseinstrumentiru/dpd","last_synced_at":"2026-01-19T06:34:07.902Z","repository":{"id":57500529,"uuid":"193329633","full_name":"vseinstrumentiru/dpd","owner":"vseinstrumentiru","description":"SDK for integration with DPD Russia IS","archived":false,"fork":false,"pushed_at":"2020-04-15T23:05:31.000Z","size":140,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-14T08:47:15.062Z","etag":null,"topics":["dpd","go","golang","sdk"],"latest_commit_sha":null,"homepage":"https://www.dpd.ru/dpd/integration/integration.do2","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vseinstrumentiru.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-23T09:31:47.000Z","updated_at":"2024-01-18T18:25:15.000Z","dependencies_parsed_at":"2022-08-30T21:01:04.218Z","dependency_job_id":null,"html_url":"https://github.com/vseinstrumentiru/dpd","commit_stats":null,"previous_names":["seacomandor/dpd"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/vseinstrumentiru/dpd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vseinstrumentiru%2Fdpd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vseinstrumentiru%2Fdpd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vseinstrumentiru%2Fdpd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vseinstrumentiru%2Fdpd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vseinstrumentiru","download_url":"https://codeload.github.com/vseinstrumentiru/dpd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vseinstrumentiru%2Fdpd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28562405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T03:31:16.861Z","status":"ssl_error","status_checked_at":"2026-01-19T03:31:15.069Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dpd","go","golang","sdk"],"created_at":"2026-01-19T06:34:07.846Z","updated_at":"2026-01-19T06:34:07.897Z","avatar_url":"https://github.com/vseinstrumentiru.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":" # SDK для интеграции с SOAP сервисами транспортной компании DPD\n[![GoDoc reference](https://godoc.org/github.com/vseinstrumentiru/dpd?status.svg)](https://godoc.org/github.com/vseinstrumentiru/dpd) \n\nRoadmap\n- [ ] Web служба \"Георгафия DPD\"\n  - [X] getCitiesCashPay\n  - [X] getParcelShops\n  - [X] getTerminalsSelfDelivery2\n  - [ ] getStoragePeriod\n  - [ ] getPossibleExtraService\n- [ ] Web служба \"Расчет стоимости\"\n  - [X] getServiceCost2\n  - [ ] getServiceCostByParcels2\n  - [ ] getServiceCostInternational  \n- [ ] Web служба \"Создание заказа\"\n  - [X] createOrder\n  - [x] getOrderStatus\n  - [ ] createAddress\n  - [ ] updateAddress\n  - [ ] getInvoiceFile\n  - [ ] getRegisterFile\n  - [ ] addAirwayBill\n  - [ ] changeUnitLoad\n- [ ] Web служба \"Изменение заказа\"\n  - [X] addParcels\n  - [X] removeParcel\n- [ ] Web служба \"Отмена заказа\"\n  - [X] cancelOrder\n- [ ] Web служба \"Отслеживание статуса\"\n  - [X] getStatesByClient\n  - [X] getStatesByClientOrder§\n  - [ ] confirm\n  - [ ] getStatesByClientParcel\n  - [X] getStatesByDPDOrders\n  - [ ] getEvents\n  - [ ] getTrackingOrderLink\n- [ ] Web служба \"Отчеты\" \n  - [ ] getNLAmount\n  - [ ] getNLInvoice\n  - [ ] getWaybill\n- [ ] Web служба \"Печать наклейки\"\n  - [ ] createLabelFile\n  - [ ] createParcelLabel\n\n\n## Пример использования\n\n```go\ndpdClient := dpdSdk.NewDPDClient(clinetNumber, clientKey\n    ServiceUrls{\n        GeographyUrl:  \"http://wstest.dpd.ru/services/geography2\",\n        OrderUrl:      \"http://wstest.dpd.ru/services/order2\",\n        CalculatorUrl: \"http://wstest.dpd.ru/services/calculator2\",\n        TrackingUrl:   \"http://wstest.dpd.ru/services/tracing\",\n    },\n)\n\n\ncalcRequest := dpdSdk.NewCalculateRequest().\n    SetPickup(dpdSdk.NewCity(48951627)).\n    SetDelivery(dpdSdk.NewCity(195595210)).\n    SetWeight(2.34).\n    SetSelfPickup(false).\n    SetSelfDelivery(false)\n\nres, err := dpdClient.GetServiceCost2(calcRequest)\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvseinstrumentiru%2Fdpd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvseinstrumentiru%2Fdpd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvseinstrumentiru%2Fdpd/lists"}