Skip to main content

InvitedSupplierCustomerResponse

data object[]required
  • Array [
  • idstring<uuid>required
    Example: 3421b552-ff87-447a-ad68-19ee20f9dfde
    namestringrequired
    statusstringrequired

    Eligibility status. "active": can be invited to projects and awarded. "inProgress": can be invited but not awarded. "blocked": cannot be invited or awarded.

    Possible values: [active, inProgress, blocked]

    Example: active
    createdAtstring<date-time>required
    archivedbooleanrequired

    Whether the supplier is archived. Archived suppliers cannot be invited to projects nor awarded.

    attributes object

    Attributes of the supplier. The keys are the attribute names, and the values are the attribute values.

    property name* object
    oneOf

    Value for a String or List attribute

    string

    Value for a String or List attribute

    contacts object[]
  • Array [
  • firstNamestringrequired
    Example: Nasir
    lastNamestringrequired
    Example: Yost
    emailstring<email>required
    Example: contact@archlet.ch
  • ]
  • ]
  • pagination objectrequired
    nextCursor objectrequired

    A cursor used to fetch the next page of results. It is null if there is no next page. Use the value as cursor parameter to fetch the next page.

    oneOf
    string
    hasMorebooleanrequired

    Indicates whether there are more results available. Keep calling the API with the provided nextCursor until hasMore is false to retrieve all results.

    totalnumberrequired

    The total number of results available.

    Example: 42
    InvitedSupplierCustomerResponse
    {
    "data": [
    {
    "id": "3421b552-ff87-447a-ad68-19ee20f9dfde",
    "name": "string",
    "status": "active",
    "createdAt": "2024-07-29T15:51:28.071Z",
    "archived": true,
    "attributes": {
    "region": "North America",
    "annual_revenue": 50000000,
    "iso_certified": true,
    "product_categories": [
    "Electronics",
    "Software",
    "Hardware"
    ],
    "qualification": {
    "Qualified": [
    "Manufacturing//Electronics//Semiconductors"
    ],
    "Onboarding pending": [
    "Manufacturing//Automotive//Engine Parts",
    "Manufacturing//Automotive//Brakes"
    ],
    "Not qualified": [
    "Manufacturing//Medical Devices//Diagnostic Equipment"
    ]
    },
    "payment_terms": "Net 30",
    "years_in_business": 15,
    "minority_owned": false,
    "sustainability_rating": "A",
    "preferred_vendor": true,
    "emergency_contact": null
    },
    "contacts": [
    {
    "firstName": "Nasir",
    "lastName": "Yost",
    "email": "contact@archlet.ch"
    }
    ]
    }
    ],
    "pagination": {
    "nextCursor": "MjAyNS0wMS0wMSAxNzoyOTo1OS4yNwo=",
    "hasMore": true,
    "total": 42
    }
    }