(orgAPID, serviceAPID string)
| 124 | } |
| 125 | |
| 126 | func getServiceAttachmentsPath(orgAPID, serviceAPID string) string { |
| 127 | return fmt.Sprintf("/orgs/%s/services/%s/attachments", url.QueryEscape(orgAPID), url.QueryEscape(serviceAPID)) |
| 128 | } |
| 129 | |
| 130 | func (s *Session) GetServiceAttachments(ctx context.Context, orgAPID string, serviceAPID string) ([]Attachment, error) { |
| 131 | var attachments Attachments |
no outgoing calls
no test coverage detected