1. Serviceprovider
Example be.open API
  • be.open API
    • be.open API
    • Samples
    • Auth
      • Get api auth token
    • Attributes & Options
      • attributes
        • get country options of a product
      • get all available attributes
      • create or update an attribute
      • get a single attribute by id
      • adds or updates an option
      • list attribute categories
      • returns options for an attribute type of a service provider
    • Basket
      • get Basket
    • Price
      • get Price list
    • Categories
      • get product categories
      • Returns the products of a category.
    • Products & Combinations
      • get product configuration
      • get option configuration
      • get product attributes
      • get product independent attributes
      • Returns the products.
      • adds or updates a product with attributes, options and combinations.
      • Returns the single product.
      • adds or updates attributes, options and combinations of a product. Used to import combinations in parts
      • delete combinations.
      • get country attribute with options
    • Serviceprovider
      • change attribute settings just for this service provider
        PATCH
      • change option settings just for this service provider
        PATCH
      • change attribute category setting just for this service provider
        PATCH
      • list orders for a service provider
        GET
      • get an order for a service provider
        GET
      • update order status from service provider
        PATCH
    • Order
      • create an order
      • get order
    • change attribute category setting just for this service provider
      PATCH
    • change attribute category setting just for this service provider
      PATCH
    • Schemas
      • Schemas
        • Attribute
        • AttributeCategory
        • CategoryModel
        • Product
        • BasicOrder
        • Order
        • Option
        • ProductMetaInformation
        • Client
        • OrderDetail
        • OrderCustomField
        • OrderFile
        • OrderUpload
        • File
        • PartialDelivery
        • OrderDetailFile
        • ProductCombination
        • Address
        • OrderDetailPrice
        • OrderDetailCombination
        • Address2
        • PriceConfiguration
        • Currency
        • ConfigurationOption
        • Price
        • ConfigurationOptionSize
      • Improved Schemas
        • ExampleAttributesCollection
        • Attribute
        • AttributeMetaData
        • Category
      • Responses
      • Custom Schemas
        • UpdateServiceproviderOrderResponse
      • AttributeOption
      • CreateProduct
      • QuantityShipping
      • QuantityDelivery
      • DeleteQuantityShipping
      • placedOrder
      • DeleteQuantityDelivery
      • Authentication
      • AuthenticationResponse
      • CreateAttribute
      • CreateOption
      • CreateProductCombination
      • DeleteProductCombination
      • ProductTypeData
      • DependableAttribute
      • ProductVariant
      • DeleteProductVariant
      • ServiceproviderOrderDetail
      • DependableOption
      • ProductQuantity
      • ProductAttribute
      • DeleteProductQuantity
      • OrderDetailPage
      • OptionOfAttribute
      • ProductResponse
      • LooseLeafData
      • AttributeResponse
      • OrderResponse
      • OrderDetailResponse
      • OrderAttributeOption
      • BasketPrice
      • OrderAddressResponse
      • CreateOrderAddress
      • CreateOrder
      • PatchServiceProviderOrder
      • JsonApi
      • PaginationMeta
      • PaginationLinks
      • AttributesListResponse
      • AttributeSingleResponse
      • OptionSingleResponse
      • AttributeResource
      • OptionIdentifier
      • AttributeCategoryEmbedded
      • AttributeCategoryResource
      • OptionResource
  • Druckshop API
    • Cart
      • getByJobNumber
    • Tracking
      • getByJobNumber
      • addTrackingId
    • Order
      • getOrder
      • getOrders
      • getOrderByReference
      • getOrderCart
    • FreeOrder
      • addFreeOrder
    • Schemas
      • FreeOrder
      • FreeOrderResponse
      • ApiAddress
      • FreeOrderPrice
      • FreeOrderCart
      • FreeOrderArticle
      • FreeOrderDataKeyValuePrice
  • be.print Dashboard API
    • PlacedOrder
      • Store a newly created placedOrder
      • Update an existing placedOrder
    • PlacedOrderCart
      • Store a newly created placedOrderCart
      • Update an existing placedOrderCart
    • Sso
      • sso.getTokenCheck
      • sso.setUserMapping
    • ValidateCustomerApi
      • validateCustomerApi.whoAmI
      • validateCustomerApi.postExternalClient
    • Dashboard API (MOVE TO ANOTHER PROJECT)!
      • Customer
        • whoAmI
        • addExternalClient
      • Orders
        • create order
        • update order
        • update order cart
    • Schemas
      • Schemas
        • AddExternalClientRequest
        • PlacedOrderCartRequest
        • PlacedOrderRequest
        • SsoExternalLinkRequest
        • SsoExternalUserMapping
      • Response
        • AuthenticationException
        • ValidationException
        • AuthorizationException
        • ModelNotFoundException
      • placedOrder
  1. Serviceprovider

change attribute settings just for this service provider

PATCH
/api/serviceproviders/{serviceproviderId}/attributes/{attributeId}
Updates an attribute's settings for this specific service provider (creates a SubAttribute if none exists yet). Authentication: requires ROLE_MANUFACTURER_ADMIN. All body fields are optional — the server only updates the fields actually provided (isset checks per field). External IDs (external_id, external_id2) update the ServiceProviderAttribute mapping; category_id re-links the attribute to a different AttributeCategory (or detaches if empty).

Request

Path Params

Body Params application/json

Example
{
    "name": "Color (DE)",
    "sort": 2,
    "category_id": "5117a596-fd4f-4fba-a27e-5affde564b2c",
    "attribute_style": "list",
    "sort_type": 1,
    "external_id": "color"
}

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "jsonapi": {
        "version": "1.0"
    },
    "data": {
        "type": "attributes",
        "id": "0e2e958e-ea2c-45e6-b1f0-b0d383b5cecb",
        "attributes": {
            "name": "Farbe",
            "original_name": "Farbe",
            "sort": 1,
            "description": null,
            "key": "color",
            "category": "none",
            "attribute_category": {
                "type": "attribute_categories",
                "id": "5117a596-fd4f-4fba-a27e-5affde564b2c",
                "attributes": {
                    "name": "none",
                    "sort": 0,
                    "key": "none"
                }
            },
            "sort_type": 1,
            "field_type": "single",
            "attribute_style": "normal",
            "attribute_type": "other",
            "base_url": ""
        },
        "relationships": {
            "options": {
                "data": [
                    {
                        "type": "options",
                        "id": "7fff7f85-1869-43d3-a831-8ac14d77aea5"
                    },
                    {
                        "type": "options",
                        "id": "17d3f17e-67c3-4a85-97aa-db614caba671"
                    }
                ]
            }
        }
    }
}
🟠404
Modified at 2026-05-29 10:44:16
Previous
get country attribute with options
Next
change option settings just for this service provider
Built with