var client = new RestClient("https://api.assembla.com/v1/spaces/<SPACEID>/tickets/milestone/<MILESTONE_ID>");var request = new RestRequest(Method.GET);request.AddHeader("postman-token", "914cf678-0cab-b421-74ed-9d1f9100423c");request.AddHeader("cache-control", "no-cache");request.AddHeader("ticket_status", "Development Complete");request.AddHeader("per_page", "100");request.AddHeader("x-api-secret", "---------------------");request.AddHeader("x-api-key", "-----------------");IRestResponse response = client.Execute(request);
--
You received this message because you are subscribed to the Google Groups "Assembla API Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to assembla-api-d...@googlegroups.com.
To post to this group, send email to assembla...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Context for a current milestone.Using "site1001 v3.6.0” as the milestone of interest. as shown here:Suggest from API ref,Example GET URL:space_id : SE_Dunnmilestone_id : 10302703-site1001-v3-6-0Fashioned URL:With header params:
per_page : 100
ticket_status : New
var client = new RestClient("https://api.assembla.com/v1/spaces/SE_Dunn/tickets/milestone/10302703-site1001-v3-6-0");
var request = new RestRequest(Method.GET);
request.AddHeader("postman-token", "4a63abaf-f846-5411-63f3-5444399dfc2e");
request.AddHeader("cache-control", "no-cache");
request.AddHeader("ticket_status", "New");
request.AddHeader("per_page", "100");
OR in a CURLrequest.AddHeader("x-api-secret", "<MySecretHash>");request.AddHeader("x-api-key", "<MyAPIKey>");IRestResponse response = client.Execute(request);
curl -X GET \-H 'cache-control: no-cache' \-H 'per_page: 100' \-H 'postman-token: 43264aa1-1662-93fb-ca11-da5fe908d661' \-H 'ticket_status: New' \-H 'x-api-key: <myAPIKEY>' \-H 'x-api-secret: <MySecretHash>'
To unsubscribe from this group and stop receiving emails from it, send an email to assembla-api-dev+unsub...@googlegroups.com.
curl -X GET \https://api.assembla.com/v1/spaces/SE_Dunn/tickets.json \
-H 'cache-control: no-cache' \-H 'per_page: 100' \
-H 'postman-token: 3d496e36-104e-f7f6-73f6-3209e10cd1e3' \-H 'report: 3261743' \-H 'ticket_status: New' \-H 'x-api-key: .....' \-H 'x-api-secret: ......'

To unsubscribe from this group and stop receiving emails from it, send an email to assembla-api-dev+unsubscribe...@googlegroups.com.
To post to this group, send email to assembla...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
![]() | Mark A. Walters Release Management Engineer Site 1001 Inc. | Building Vision 1001 Locust Street, 3rd Floor Kansas City, MO 64106 e: mark.w...@site1001.com t: 208.660.1666 |