File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ The difference with dotnet cli is that you need to manually modify the .csproj f
4545
4646``` c#
4747using TrackingMoreAPI ;
48+ using TrackingMoreAPI .Model .Couriers ;
49+ using TrackingMoreAPI .Model .AirWaybills ;
50+ using TrackingMoreAPI .Model .Trackings ;
4851
4952namespace Testing ;
5053
@@ -250,7 +253,7 @@ if(apiResponse.data != null){
250253https://api.trackingmore.com/v4/trackings/delete/{id}
251254``` c#
252255string idString = " 9a5575a8b14833ff3a34d357709707b7" ;
253- var apiResponse = trackingMore .Tracking .RetrackTrackingByID (idString );
256+ var apiResponse = trackingMore .Tracking .DeleteTrackingByID (idString );
254257Console .WriteLine (apiResponse .meta .code );
255258if (apiResponse .data != null ){
256259 Console .WriteLine (apiResponse .data .trackingNumber );
You can’t perform that action at this time.
0 commit comments