Created
May 10, 2019 17:14
-
-
Save disusered/b8174436c833265eb7bd47da296fbc24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Batch Create Assertion Duplicate | |
curl -X "POST" "http://localhost:4000/api/batch/assertions" \ | |
-H 'Content-Type: application/json; charset=utf-8' \ | |
-H 'Cookie: jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJjYXJsb3NAYmFkZ2V0cmVlLmNvbSIsImlkIjoyfQ.yL0nNX_l3VtPjgZdVk7-1Q7TD4XF_IiVk2VgwhwoOqs; ueberauth_linkedin_state=INKFNIWeDa6TbzGP9aI/VA==' \ | |
-d $'{ | |
"data": [ | |
{ | |
"issuer_id": "4", | |
"user_email": "[email protected]", | |
"message": "Mensaje", | |
"badgeclass_id": "3", | |
"narrative": "https://narrativa.org/?id=12as", | |
"evidence": [ | |
{ | |
"name": "Evidencia Principal", | |
"description": "https://evidencias.com/?q=1", | |
"issuer_id": "4" | |
} | |
] | |
}, | |
{ | |
"issuer_id": "4", | |
"user_email": "[email protected]", | |
"message": "Mensaje", | |
"badgeclass_id": "3", | |
"narrative": "", | |
"evidence": [] | |
} | |
] | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment