From 1eac3b86ccb4597933fa31b7516396311ccd6e42 Mon Sep 17 00:00:00 2001 From: James Li Date: Tue, 30 Jul 2024 09:59:00 -0700 Subject: [PATCH] Update Attestation to POST https://github.com/DIMO-Network/attestation-api/pull/15 --- src/api/resources/Attestation/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/resources/Attestation/index.ts b/src/api/resources/Attestation/index.ts index 8144008..00189b9 100644 --- a/src/api/resources/Attestation/index.ts +++ b/src/api/resources/Attestation/index.ts @@ -7,10 +7,10 @@ export class Attestation extends Resource { super(api, 'Attestation', env); this.setResource({ createVinVC: { - method: 'GET', + method: 'POST', path: '/v1/vc/vin/:tokenId', auth: 'privilege_token' } }) } -} \ No newline at end of file +}