ProductManufacturer
Represents a manufacturer
type ProductManufacturer {
id: Int!
name: String!
internalName: String
contactPerson: String
website: String
address: Address
note: String
}
Fields
id ● Int!
The internal id
name ● String!
The name of the manufacturer
internalName ● String
The internal name of the manufacturer. Requires admin login
contactPerson ● String
Contact person of the manufacturer
website ● String
The url to the website of the manufacturer
address ● Address
The postal address and contact details of the manufacturer, of type CONTACT
note ● String
Additional information about the manufacturer
Example
{
"address": {
"organizationRegistrationId": "SE5566395256",
"organizationName": "Askås Internet- & Reklambyrå AB",
"organizationNumber": "556639-5256",
"ssn": 191212,
"firstName": "John",
"lastName": "Doe",
"streetAddress": "Järnvägsgatan 11",
"houseNumber": 11,
"streetAddress2": 11,
"postalCode": 66133,
"city": "Säffle",
"country": "Sverige",
"state": {
"country": {
"phonePrefix": "+46"
}
},
"email": "[email protected]",
"phone": "+1123456789",
"reference": "Project 221",
"doorCode": 1234,
"attention": "Jane"
}
}