/organization/couplingseriesdetails v1.0.0
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
Base URLs:
CrimpFittings
getOrganizationCouplingSeriesDetails
Code samples
const headers = {
Accept: "application/json",
};
fetch("https://goldleaf.app/api/v1/organization/couplingseriesdetails?series=type,string&brand=type,string", {
method: "GET",
headers: headers,
})
.then(function (res) {
return res.json();
})
.then(function (body) {
console.log(body);
});
GET /organization/couplingseriesdetails
Gets coupling series details (two-piece)
Gets an object indicating whether the crimp fitting series is two piece or not.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| series | query | string | true | The series of the crimp fitting, must not be empty. |
| brand | query | string | true | The brand of the crimp fitting, must not be empty. |
Example responses
500 Response
{
"type": "string"
}
Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Details of whether this series is two-piece or not | None |
| 500 | Internal Server Error | Server error | string |
